aboutsummaryrefslogtreecommitdiff
path: root/embassy-nrf/src/timer.rs
diff options
context:
space:
mode:
authorDion Dokter <[email protected]>2021-10-19 10:13:08 +0200
committerDario Nieuwenhuis <[email protected]>2021-10-26 14:47:31 +0200
commita6c84cb91552fc0442a28126d3fae60031aa6622 (patch)
tree260555ec0c58eb5e2053f4031889b4260bb9ebea /embassy-nrf/src/timer.rs
parent531dfcffb3c203dff15dcb53fe25577c121c7784 (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.rs2
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;
11use embassy_hal_common::unborrow; 11use embassy_hal_common::unborrow;
12use futures::future::poll_fn; 12use futures::future::poll_fn;
13 13
14use crate::interconnect::{Event, Task};
15use crate::pac; 14use crate::pac;
15use crate::ppi::{Event, Task};
16 16
17pub(crate) mod sealed { 17pub(crate) mod sealed {
18 18