aboutsummaryrefslogtreecommitdiff
path: root/embassy-nrf
diff options
context:
space:
mode:
Diffstat (limited to 'embassy-nrf')
-rw-r--r--embassy-nrf/src/chips/nrf54l15_app.rs11
1 files changed, 9 insertions, 2 deletions
diff --git a/embassy-nrf/src/chips/nrf54l15_app.rs b/embassy-nrf/src/chips/nrf54l15_app.rs
index f58a74825..e063152d6 100644
--- a/embassy-nrf/src/chips/nrf54l15_app.rs
+++ b/embassy-nrf/src/chips/nrf54l15_app.rs
@@ -217,6 +217,8 @@ embassy_hal_internal::peripherals! {
217 PPI00_CH6, 217 PPI00_CH6,
218 PPI00_CH7, 218 PPI00_CH7,
219 219
220 PPI10_CH0,
221
220 PPI20_CH0, 222 PPI20_CH0,
221 PPI20_CH1, 223 PPI20_CH1,
222 PPI20_CH2, 224 PPI20_CH2,
@@ -242,6 +244,8 @@ embassy_hal_internal::peripherals! {
242 PPI00_GROUP0, 244 PPI00_GROUP0,
243 PPI00_GROUP1, 245 PPI00_GROUP1,
244 246
247 PPI10_GROUP0,
248
245 PPI20_GROUP0, 249 PPI20_GROUP0,
246 PPI20_GROUP1, 250 PPI20_GROUP1,
247 PPI20_GROUP2, 251 PPI20_GROUP2,
@@ -303,6 +307,9 @@ embassy_hal_internal::peripherals! {
303 P2_09, 307 P2_09,
304 P2_10, 308 P2_10,
305 309
310 // GRTC
311 GRTC,
312
306 // RTC 313 // RTC
307 RTC10, 314 RTC10,
308 RTC30, 315 RTC30,
@@ -494,8 +501,8 @@ impl_ppi_group!(PPI20_GROUP5, DPPIC20, 5);
494impl_ppi_group!(PPI30_GROUP0, DPPIC30, 0); 501impl_ppi_group!(PPI30_GROUP0, DPPIC30, 0);
495impl_ppi_group!(PPI30_GROUP1, DPPIC30, 1); 502impl_ppi_group!(PPI30_GROUP1, DPPIC30, 1);
496 503
497// impl_ppi_channel!(PPI10_CH0, pac::DPPIC10, 0 => static); 504impl_ppi_channel!(PPI10_CH0, DPPIC10, 0 => static);
498// impl_ppi_group!(PPI10_GROUP0, pac::DPPIC10, 0); 505impl_ppi_group!(PPI10_GROUP0, DPPIC10, 0);
499 506
500impl_timer!(TIMER00, TIMER00, TIMER00); 507impl_timer!(TIMER00, TIMER00, TIMER00);
501impl_timer!(TIMER10, TIMER10, TIMER10); 508impl_timer!(TIMER10, TIMER10, TIMER10);