aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--embassy-nrf/src/interconnect/mod.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/embassy-nrf/src/interconnect/mod.rs b/embassy-nrf/src/interconnect/mod.rs
index 23cc45270..8cb505bdc 100644
--- a/embassy-nrf/src/interconnect/mod.rs
+++ b/embassy-nrf/src/interconnect/mod.rs
@@ -10,10 +10,10 @@
10//! 10//!
11//! On nRF52 devices, there is also a fork task endpoint, where the user can configure one more task 11//! On nRF52 devices, there is also a fork task endpoint, where the user can configure one more task
12//! to be triggered by the same event, even fixed PPI channels have a configurable fork task. 12//! to be triggered by the same event, even fixed PPI channels have a configurable fork task.
13//! 13//!
14//! The DPPI for nRF53 and nRF91 devices works in a different way. Every channel can support infinitely 14//! The DPPI for nRF53 and nRF91 devices works in a different way. Every channel can support infinitely
15//! many tasks and events, but any single task or event can only be coupled with one channel. 15//! many tasks and events, but any single task or event can only be coupled with one channel.
16//! 16//!
17 17
18use crate::{pac, peripherals}; 18use crate::{pac, peripherals};
19use core::marker::PhantomData; 19use core::marker::PhantomData;