diff options
| author | Dion Dokter <[email protected]> | 2021-10-19 10:13:08 +0200 |
|---|---|---|
| committer | Dario Nieuwenhuis <[email protected]> | 2021-10-26 14:47:31 +0200 |
| commit | a6c84cb91552fc0442a28126d3fae60031aa6622 (patch) | |
| tree | 260555ec0c58eb5e2053f4031889b4260bb9ebea /embassy-nrf/src/uarte.rs | |
| parent | 531dfcffb3c203dff15dcb53fe25577c121c7784 (diff) | |
- Interconnect is now PPI again
- Scary pointer math is now contained in the tasks and events
- ppi now sets the tasks and events immediately and the struct is now zero-sized
- StaticToOne is renamed to ZeroToOne
- Used DPPI tasks and events now panic when enabled twice
Diffstat (limited to 'embassy-nrf/src/uarte.rs')
| -rw-r--r-- | embassy-nrf/src/uarte.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/embassy-nrf/src/uarte.rs b/embassy-nrf/src/uarte.rs index 17e60ce22..36cf65d89 100644 --- a/embassy-nrf/src/uarte.rs +++ b/embassy-nrf/src/uarte.rs | |||
| @@ -16,9 +16,9 @@ use futures::future::poll_fn; | |||
| 16 | use crate::chip::EASY_DMA_SIZE; | 16 | use crate::chip::EASY_DMA_SIZE; |
| 17 | use crate::gpio::sealed::Pin as _; | 17 | use crate::gpio::sealed::Pin as _; |
| 18 | use crate::gpio::{self, OptionalPin as GpioOptionalPin, Pin as GpioPin}; | 18 | use crate::gpio::{self, OptionalPin as GpioOptionalPin, Pin as GpioPin}; |
| 19 | use crate::interconnect::{AnyChannel, Event, OneToOneChannel, OneToTwoChannel, Ppi, Task}; | ||
| 20 | use crate::interrupt::Interrupt; | 19 | use crate::interrupt::Interrupt; |
| 21 | use crate::pac; | 20 | use crate::pac; |
| 21 | use crate::ppi::{AnyChannel, Event, OneToOneChannel, OneToTwoChannel, Ppi, Task}; | ||
| 22 | use crate::timer::Instance as TimerInstance; | 22 | use crate::timer::Instance as TimerInstance; |
| 23 | use crate::timer::{Frequency, Timer}; | 23 | use crate::timer::{Frequency, Timer}; |
| 24 | 24 | ||
