aboutsummaryrefslogtreecommitdiff
path: root/examples/stm32l5/src/bin
Commit message (Collapse)AuthorAgeFilesLines
...
* 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