summaryrefslogtreecommitdiff
path: root/examples/stm32f3/src/bin/multiprio.rs
AgeCommit message (Collapse)Author
2022-08-22Remove Forever, switch to static_cell.Dario Nieuwenhuis
2022-08-18Split embassy-time from embassy-executor.Dario Nieuwenhuis
2022-07-29Split embassy crate into embassy-executor, embassy-util.Dario Nieuwenhuis
2022-06-12Run rustfmt.Dario Nieuwenhuis
2022-06-12Add embassy-cortex-m crate.Dario Nieuwenhuis
- Move Interrupt and InterruptExecutor from `embassy` to `embassy-cortex-m`. - Move Unborrow from `embassy` to `embassy-hal-common` (nothing in `embassy` requires it anymore) - Move PeripheralMutex from `embassy-hal-common` to `embassy-cortex-m`.
2022-04-25executor: fix unsoundness in InterruptExecutor::start.Dario Nieuwenhuis
The initial closure is not actually called in the interrupt, so this is illegally sending non-Send futures to the interrupt. Remove the closure, and return a SendSpawner instead.
2022-04-02Use embassy/defmt-timestamp-uptime in all examples.Dario Nieuwenhuis
2022-02-10Port multiprio example to stm32f3 and stm32f4 platformsCristian Eigel