aboutsummaryrefslogtreecommitdiff
path: root/src/interrupt.rs
diff options
context:
space:
mode:
authorFelipe Balbi <[email protected]>2025-11-13 09:06:43 -0800
committerGitHub <[email protected]>2025-11-13 09:06:43 -0800
commit7480db25d5cc1866a3e037bfb89f990d9847bd10 (patch)
tree8128d3f0ba58c530a5fb83f6eca62a8b12a1709b /src/interrupt.rs
parent6eb28d3e7b7290d2998229b1bfb624e33575ea83 (diff)
parentf1636f3913e06f84ec2a097924bd7154b9bb1a3c (diff)
Merge pull request #13 from jamesmunns/james/repac
Switch to new PAC commit
Diffstat (limited to 'src/interrupt.rs')
-rw-r--r--src/interrupt.rs4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/interrupt.rs b/src/interrupt.rs
index 09d7acbef..134ff03fd 100644
--- a/src/interrupt.rs
+++ b/src/interrupt.rs
@@ -2,6 +2,10 @@
2//! Type-level interrupt traits and bindings are provided by the 2//! Type-level interrupt traits and bindings are provided by the
3//! `embassy_hal_internal::interrupt_mod!` macro via the generated module below. 3//! `embassy_hal_internal::interrupt_mod!` macro via the generated module below.
4 4
5// TODO(AJM): As of 2025-11-13, we need to do a pass to ensure safety docs
6// are complete prior to release.
7#![allow(clippy::missing_safety_doc)]
8
5mod generated { 9mod generated {
6 embassy_hal_internal::interrupt_mod!(OS_EVENT, LPUART2, RTC, ADC1); 10 embassy_hal_internal::interrupt_mod!(OS_EVENT, LPUART2, RTC, ADC1);
7} 11}