aboutsummaryrefslogtreecommitdiff
path: root/examples/stm32l4/src/bin/spi_blocking_async.rs
Commit message (Collapse)AuthorAgeFilesLines
* stm32/spi: remove DMA generic params.Dario Nieuwenhuis2024-04-151-2/+1
|
* Change GPIO inherent methods back to `&self`.Dario Nieuwenhuis2024-01-101-1/+1
| | | | | | | With the embedded-hal rc3 update I changed them to require `&mut self`, but in retrospect I think `&self` is better, for extra flexibility. This PR reverts the changes from the rc3 update to inherent methods.
* ci: use beta, add secondary nightly ci.Dario Nieuwenhuis2023-12-211-1/+0
|
* Update embedded-hal to 1.0.0-rc.3Dario Nieuwenhuis2023-12-141-1/+1
|
* Set frequency in stm32 SPI examplesbofh2023-07-311-1/+5
|
* Fix formattingbofh2023-07-301-9/+1
|
* Fix stm32 SPI examplesbofh2023-07-301-2/+0
|
* Split embassy-time from embassy-executor.Dario Nieuwenhuis2022-08-181-1/+1
|
* Remove HAL initialization from #[embassy::main] macro.Dario Nieuwenhuis2022-08-171-2/+2
|
* Split embassy crate into embassy-executor, embassy-util.Dario Nieuwenhuis2022-07-291-2/+2
|
* Run rustfmt.Dario Nieuwenhuis2022-06-121-3/+1
|
* Async shared bus for SPI & I2C + rename embassy-traits (#769)Henrik Alsér2022-05-261-1/+1
| | | | | | | | | | | | | | | | | | | * Rename embassy-traits to embassy-embedded-hal * Rename embassy-traits to embassy-embedded-hal * Add shared bus for SPI and I2C * rustfmt * EHA alpha 1 * Rename embedded-traits in examples * rustfmt * rustfmt Co-authored-by: Henrik Alsér <[email protected]>
* Use embassy/defmt-timestamp-uptime in all examples.Dario Nieuwenhuis2022-04-021-3/+3
|
* Update rust nightly, embedded-hal 1.0, embedded-hal-async.Dario Nieuwenhuis2022-03-111-1/+1
|
* Support unstable-trait feature for stm32Ulf Lilleengen2022-01-261-4/+5
|
* stm32/gpio: expose all functionality as inherent methods.Dario Nieuwenhuis2022-01-191-5/+4
|
* Add adapter for implementing async traits for blocking typesUlf Lilleengen2021-12-171-0/+57
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.