aboutsummaryrefslogtreecommitdiff
path: root/examples/stm32l4/src/bin/usart_blocking_async.rs
Commit message (Collapse)AuthorAgeFilesLines
* Switch to crates.io embedded-hal, embedded-hal-async.Dario Nieuwenhuis2022-04-221-30/+0
| | | | | This temporarily removes support for the async UART trait, since it's not yet in embedded-hal-async.
* Use embassy/defmt-timestamp-uptime in all examples.Dario Nieuwenhuis2022-04-021-3/+3
|
* traits: migrate Delay to embedded-hal 1.0+async, remove Rng and Flash.Dario Nieuwenhuis2022-01-271-1/+1
|
* Support unstable-trait feature for stm32Ulf Lilleengen2022-01-261-4/+2
|
* Add adapter for implementing async traits for blocking typesUlf Lilleengen2021-12-171-0/+32
This allows writing drivers relying on async traits, while still functioning with implementations that already implement the embedded-hal traits. Add examples to stm32l4 for using this feature.