diff options
| author | bors[bot] <26634292+bors[bot]@users.noreply.github.com> | 2022-06-12 19:49:15 +0000 |
|---|---|---|
| committer | GitHub <[email protected]> | 2022-06-12 19:49:15 +0000 |
| commit | fff0a03fe0f9e84209dd40fd8f93790871d03d75 (patch) | |
| tree | f0d0d0adf0731fb7326f34f8adaec3676bbe22c7 /examples/stm32wl/src | |
| parent | 6b3499a5c831e6deb1c8550efdfe7601fa4c6e56 (diff) | |
| parent | 5085100df2845745f13715669c18a785a374a879 (diff) | |
Merge #806
806: Add embassy-cortex-m crate. r=Dirbaio a=Dirbaio
- 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`.
Co-authored-by: Dario Nieuwenhuis <[email protected]>
Diffstat (limited to 'examples/stm32wl/src')
| -rw-r--r-- | examples/stm32wl/src/bin/subghz.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/stm32wl/src/bin/subghz.rs b/examples/stm32wl/src/bin/subghz.rs index 562e25ac0..f5f9b6a32 100644 --- a/examples/stm32wl/src/bin/subghz.rs +++ b/examples/stm32wl/src/bin/subghz.rs | |||
| @@ -10,11 +10,11 @@ use panic_probe as _; | |||
| 10 | 10 | ||
| 11 | use defmt::*; | 11 | use defmt::*; |
| 12 | use embassy::channel::signal::Signal; | 12 | use embassy::channel::signal::Signal; |
| 13 | use embassy::interrupt::{Interrupt, InterruptExt}; | ||
| 14 | use embassy_stm32::dma::NoDma; | 13 | use embassy_stm32::dma::NoDma; |
| 15 | use embassy_stm32::exti::ExtiInput; | 14 | use embassy_stm32::exti::ExtiInput; |
| 16 | use embassy_stm32::gpio::{Input, Level, Output, Pull, Speed}; | 15 | use embassy_stm32::gpio::{Input, Level, Output, Pull, Speed}; |
| 17 | use embassy_stm32::interrupt; | 16 | use embassy_stm32::interrupt; |
| 17 | use embassy_stm32::interrupt::{Interrupt, InterruptExt}; | ||
| 18 | use embassy_stm32::subghz::*; | 18 | use embassy_stm32::subghz::*; |
| 19 | use embassy_stm32::Peripherals; | 19 | use embassy_stm32::Peripherals; |
| 20 | 20 | ||
