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/timer.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/timer.rs')
| -rw-r--r-- | embassy-nrf/src/timer.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/embassy-nrf/src/timer.rs b/embassy-nrf/src/timer.rs index 27f8e715e..9173338b6 100644 --- a/embassy-nrf/src/timer.rs +++ b/embassy-nrf/src/timer.rs | |||
| @@ -11,8 +11,8 @@ use embassy_hal_common::drop::OnDrop; | |||
| 11 | use embassy_hal_common::unborrow; | 11 | use embassy_hal_common::unborrow; |
| 12 | use futures::future::poll_fn; | 12 | use futures::future::poll_fn; |
| 13 | 13 | ||
| 14 | use crate::interconnect::{Event, Task}; | ||
| 15 | use crate::pac; | 14 | use crate::pac; |
| 15 | use crate::ppi::{Event, Task}; | ||
| 16 | 16 | ||
| 17 | pub(crate) mod sealed { | 17 | pub(crate) mod sealed { |
| 18 | 18 | ||
