aboutsummaryrefslogtreecommitdiff
path: root/examples/src/lib.rs
diff options
context:
space:
mode:
authorJames Munns <[email protected]>2025-11-17 16:38:32 +0100
committerJames Munns <[email protected]>2025-11-17 16:38:57 +0100
commit02285c2153d22f2c0c93a4ce920cdebc03f18658 (patch)
tree5fc094d362baa29d2e58185a6416e40b7adaaf0a /examples/src/lib.rs
parenta0c8e2d0299f3ae8eb24cd264d2b8e87f2bce464 (diff)
Correct clk/rst field logic
Diffstat (limited to 'examples/src/lib.rs')
-rw-r--r--examples/src/lib.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/src/lib.rs b/examples/src/lib.rs
index 2018a3c25..4bb334da5 100644
--- a/examples/src/lib.rs
+++ b/examples/src/lib.rs
@@ -5,7 +5,7 @@
5//! These live with the examples so the HAL stays generic. 5//! These live with the examples so the HAL stays generic.
6 6
7use hal::{clocks, pins}; 7use hal::{clocks, pins};
8use {embassy_mcxa as hal, panic_probe as _}; 8use {defmt_rtt as _, embassy_mcxa as hal, panic_probe as _};
9 9
10/// Initialize clocks and pin muxing for UART2 debug console. 10/// Initialize clocks and pin muxing for UART2 debug console.
11/// Safe to call multiple times; writes are idempotent for our use. 11/// Safe to call multiple times; writes are idempotent for our use.