aboutsummaryrefslogtreecommitdiff
path: root/examples/stm32l4/src/bin/i2c_blocking_async.rs
Commit message (Collapse)AuthorAgeFilesLines
* i2c examplesSüha Ünüvar2025-08-081-2/+1
|
* stm32/i2c: remove DMA generic params.Dario Nieuwenhuis2024-04-151-17/+1
|
* ci: use beta, add secondary nightly ci.Dario Nieuwenhuis2023-12-211-1/+0
|
* stm32/i2c: add async, dual interrupt scaffolding.Dario Nieuwenhuis2023-11-241-1/+2
|
* stm32: move to bind_interruptsxoviat2023-05-241-3/+6
| | | | disable lora functionality for now
* Fix examples broken by the macro fix.Dario Nieuwenhuis2023-03-081-1/+1
|
* Split embassy-time from embassy-executor.Dario Nieuwenhuis2022-08-181-1/+1
|
* Remove HAL initialization from #[embassy::main] macro.Dario Nieuwenhuis2022-08-171-2/+3
|
* Implement I2C pullup configurationchemicstry2022-08-091-1/+10
|
* Split embassy crate into embassy-executor, embassy-util.Dario Nieuwenhuis2022-07-291-2/+2
|
* Run rustfmt.Dario Nieuwenhuis2022-06-121-5/+2
|
* 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
|
* Support unstable-trait feature for stm32Ulf Lilleengen2022-01-261-1/+2
|
* Add adapter for implementing async traits for blocking typesUlf Lilleengen2021-12-171-0/+29
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.