diff options
| author | James Munns <[email protected]> | 2025-11-13 18:02:24 +0100 |
|---|---|---|
| committer | James Munns <[email protected]> | 2025-11-13 18:03:11 +0100 |
| commit | 306e55819656eeb41c69f2d5625c46419f0534c4 (patch) | |
| tree | b393b5104ae092ba5832543c028b190112397d03 /src/interrupt.rs | |
| parent | 357a538e8d5f69c8c0aeacfd416f1ad99b0907d3 (diff) | |
Manually fix clippy lints
Diffstat (limited to 'src/interrupt.rs')
| -rw-r--r-- | src/interrupt.rs | 4 |
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 | |||
| 5 | mod generated { | 9 | mod 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 | } |
