aboutsummaryrefslogtreecommitdiff
path: root/examples/stm32l5/src
Commit message (Collapse)AuthorAgeFilesLines
* Update to embedded-io 0.5 (#1752)Dario Nieuwenhuis2023-08-071-1/+1
|
* stm32/rng: use bind_interrupts!.Dario Nieuwenhuis2023-07-312-4/+9
|
* 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-17/+13
|
* stm32: move to bind_interruptsxoviat2023-05-243-9/+18
| | | | disable lora functionality for now
* net: do not use smoltcp Instant/Duration in public API.Dario Nieuwenhuis2023-05-151-1/+1
|
* usb: unify ControlHandler+DeviceStateHandler, route all control requests to ↵Dario Nieuwenhuis2023-02-083-3/+0
| | | | | | | | all handlers. - Allows classes to handle vendor requests. - Allows classes to use a single handler for multiple interfaces. - Allows classes to access the other events (previously only `reset` was available).
* 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
|
* usb/cdc-ncm: add embassy-net Device implementation.Dario Nieuwenhuis2022-12-131-123/+17
|
* usb: move classes into the `embassy-usb` crate.Dario Nieuwenhuis2022-09-263-4/+4
|
* Replace futures::future::join -> embassy_futures::join::join.Dario Nieuwenhuis2022-09-222-2/+2
|
* Update Rust nightly.Dario Nieuwenhuis2022-09-222-2/+0
| | | | Removes feature(generic_associated_types)
* net: feature-gate nightly-only async traits to allow building on stable.Dario Nieuwenhuis2022-08-303-7/+4
|
* sync: flatten module structure.Dario Nieuwenhuis2022-08-221-1/+1
|
* split `embassy-util` into `embassy-futures`, `embassy-sync`.Dario Nieuwenhuis2022-08-221-2/+2
|
* Remove Forever, switch to static_cell.Dario Nieuwenhuis2022-08-221-7/+7
|
* Split embassy-time from embassy-executor.Dario Nieuwenhuis2022-08-185-6/+6
|
* examples Remove the `fn config()` idiom.Dario Nieuwenhuis2022-08-174-33/+12
| | | | | 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-175-13/+17
|
* Split embassy crate into embassy-executor, embassy-util.Dario Nieuwenhuis2022-07-295-18/+18
|
* Run rustfmt.Dario Nieuwenhuis2022-06-125-50/+15
|
* Rename channel to mpmchuntc2022-06-121-1/+1
| | | | I've renamed the channel module for the MPMC as mpmc. There was a previous debate about this, but I feel that the strategy here avoids importing `channel::channel`. The change leaves `signal::Signal`, but I think that's ok. It is all a bit subjective of course. The bottom line for me is that I really like the term mpmc - it means something to me and aligns with broader naming e.g. in Tokio.
* stm32: add USB driver.Dario Nieuwenhuis2022-06-075-0/+600