aboutsummaryrefslogtreecommitdiff
path: root/src/uart.rs
diff options
context:
space:
mode:
authorJames Munns <[email protected]>2025-11-13 18:02:24 +0100
committerJames Munns <[email protected]>2025-11-13 18:03:11 +0100
commit306e55819656eeb41c69f2d5625c46419f0534c4 (patch)
treeb393b5104ae092ba5832543c028b190112397d03 /src/uart.rs
parent357a538e8d5f69c8c0aeacfd416f1ad99b0907d3 (diff)
Manually fix clippy lints
Diffstat (limited to 'src/uart.rs')
-rw-r--r--src/uart.rs4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/uart.rs b/src/uart.rs
index cd504a6c6..3705959d3 100644
--- a/src/uart.rs
+++ b/src/uart.rs
@@ -1,6 +1,10 @@
1//! Minimal polling UART2 bring-up replicating MCUXpresso hello_world ordering. 1//! Minimal polling UART2 bring-up replicating MCUXpresso hello_world ordering.
2//! WARNING: This is a narrow implementation only for debug console (115200 8N1). 2//! WARNING: This is a narrow implementation only for debug console (115200 8N1).
3 3
4// TODO(AJM): As of 2025-11-13, we need to do a pass to ensure safety docs
5// are complete prior to release.
6#![allow(clippy::missing_safety_doc)]
7
4use core::cell::RefCell; 8use core::cell::RefCell;
5 9
6use cortex_m::interrupt::Mutex; 10use cortex_m::interrupt::Mutex;