aboutsummaryrefslogtreecommitdiff
path: root/examples/stm32h7/src/bin/eth_client.rs
Commit message (Collapse)AuthorAgeFilesLines
* Add new{_with_phy}, new_mii{_with_phy}datdenkikniet2025-11-141-6/+6
|
* Rustfmt for edition 2024.Dario Nieuwenhuis2025-10-061-2/+2
|
* executor: return error when creating the spawntoken, not when spawning.Dario Nieuwenhuis2025-08-291-1/+1
|
* Add rand-core v0.9 support.Dario Nieuwenhuis2025-05-181-1/+0
| | | | Co-Authored-By: Aurélien Jacobs <[email protected]>
* stm32/eth: rename PHY->Phy, GenericSMI -> GenericPhy. Remove unneeded unsafes.Dario Nieuwenhuis2025-01-261-4/+3
| | | | | We shouldn't use `unsafe` to mark merely "dangerous" actions, only actions that actually cause UB.
* stm32: change all examples and tests to use GenericSMI::new_auto().Dario Nieuwenhuis2025-01-261-1/+1
|
* Update smoltcp, embedded-nal-async to use the `core::net` IP addr types.Dario Nieuwenhuis2024-10-071-1/+3
|
* net: refactor to simplify lifetimes/generics.Dario Nieuwenhuis2024-09-161-7/+6
|
* examples: ensure at least 3 sockets to avoid running out (DHCP, DNS, the user's)Dario Nieuwenhuis2024-08-071-6/+1
|
* examples/stm32: reduce packet queue count to avoid OOM on smaller chips.Dario Nieuwenhuis2024-05-131-2/+2
|
* stm32/eth: rename new_rmii to new, update metapac to fix issues with PC2_C.Dario Nieuwenhuis2024-02-011-1/+2
|
* Implement MII interfaceSimon B. Gasse2024-02-011-1/+1
| | | | | | | | - Extend the eth/v2 module to support MII besides RMII. - Replace `Ethernet::new` with `Ethernet::new_mii` and `Ethernet::new_rmii`. - Update ethernet examples. - Add example for MII ethernet.
* ci: use beta, add secondary nightly ci.Dario Nieuwenhuis2023-12-211-1/+0
|
* chore: replace make_static! macro usage with non-macro versionUlf Lilleengen2023-12-211-5/+8
|
* stm32/eth: add host server command exampleBadr Bouslikhin2023-12-051-0/+1
|
* stm32/eth: fix h7 examplesBadr Bouslikhin2023-12-051-1/+1
| | | | | | The STM32H7 examples enable `dhcpv4` and `dns` features. Both use one socket, meaning that we need one extra socket for our firmware tcp socket.
* stm32/rcc: add shared code for hsi48 with crs support.Dario Nieuwenhuis2023-11-051-1/+1
|
* stm32/rcc: misc cleanups.Dario Nieuwenhuis2023-10-231-3/+3
|
* time: Update examples, tests, and other code to use new Timer::after_x ↵Adam Greig2023-10-151-3/+3
| | | | convenience methods
* net: remove atomic-polyfill.Dario Nieuwenhuis2023-10-121-2/+2
|
* Patch tests & examplesGabriel Górski2023-10-091-2/+1
|
* stm32/rcc: use PLL enums from PAC.Dario Nieuwenhuis2023-10-091-3/+3
|
* stm32/rcc: unify h5 and h7.Dario Nieuwenhuis2023-09-211-5/+22
|
* add wait_config_up to examplesJuliDi2023-09-081-4/+4
|
* Update to embedded-io 0.5 (#1752)Dario Nieuwenhuis2023-08-071-1/+1
|
* stm32/rng: use bind_interrupts!.Dario Nieuwenhuis2023-07-311-2/+4
|
* stm32/eth: add set_poll_intervalxoviat2023-07-151-1/+1
|
* stm32/eth: impl. poll intervalxoviat2023-07-151-1/+1
|
* net: Support dual stack IPRuben De Smet2023-06-071-2/+2
|
* Rename StaticConfig to StaticConfigV4Ruben De Smet2023-06-061-1/+1
|
* Use make_static! from static-cell v1.1Dario Nieuwenhuis2023-06-011-13/+8
|
* stm32: move to bind_interruptsxoviat2023-05-241-3/+6
| | | | disable lora functionality for now
* Fix examples broken by the macro fix.Dario Nieuwenhuis2023-03-081-1/+1
|
* net: allocate space for 2 sockets, needed for dhcp.Dario Nieuwenhuis2023-01-191-1/+1
|
* Add smoltcp dhcp socket configurationPaweł Jan Czochański2023-01-191-8/+3
|
* stm32/eth_v2: update to new embassy-net trait, remove PeripheralMutex.Dario Nieuwenhuis2022-12-131-22/+21
|
* Remove Forever, switch to static_cell.Dario Nieuwenhuis2022-08-221-7/+7
|
* Split embassy-time from embassy-executor.Dario Nieuwenhuis2022-08-181-2/+2
|
* examples Remove the `fn config()` idiom.Dario Nieuwenhuis2022-08-171-7/+3
| | | | | It was only useful for doing #[embassy_executor::main(config = "config()")]`. Now that it's gone, it makes more sense to build the config in main directly.
* Remove HAL initialization from #[embassy::main] macro.Dario Nieuwenhuis2022-08-171-3/+4
|
* Add example using embedded-nal-async traitsUlf Lilleengen2022-08-091-0/+125