aboutsummaryrefslogtreecommitdiff
path: root/embassy-mcxa/examples/src/lib.rs
diff options
context:
space:
mode:
authorJames Munns <[email protected]>2025-12-04 18:41:46 +0100
committerJames Munns <[email protected]>2025-12-04 18:43:11 +0100
commit277ab0d2e8714edf37a0ee84cda1059d9944ecef (patch)
tree66aa6d80c83cba390e0be15d3a43907ba65aa96b /embassy-mcxa/examples/src/lib.rs
parentdc6bf5d44675f6f2013ddfab6b14df25a996a965 (diff)
Move examples to top level example folder
Diffstat (limited to 'embassy-mcxa/examples/src/lib.rs')
-rw-r--r--embassy-mcxa/examples/src/lib.rs16
1 files changed, 0 insertions, 16 deletions
diff --git a/embassy-mcxa/examples/src/lib.rs b/embassy-mcxa/examples/src/lib.rs
deleted file mode 100644
index 2573a6adc..000000000
--- a/embassy-mcxa/examples/src/lib.rs
+++ /dev/null
@@ -1,16 +0,0 @@
1#![no_std]
2#![allow(clippy::missing_safety_doc)]
3
4//! Shared board-specific helpers for the FRDM-MCXA276 examples.
5//! These live with the examples so the HAL stays generic.
6
7use hal::{clocks, pins};
8use {defmt_rtt as _, embassy_mcxa as hal, panic_probe as _};
9
10/// Initialize clocks and pin muxing for ADC.
11pub unsafe fn init_adc_pins() {
12 // NOTE: Lpuart has been updated to properly enable + reset its own clocks.
13 // GPIO has not.
14 _ = clocks::enable_and_reset::<hal::peripherals::PORT1>(&clocks::periph_helpers::NoConfig);
15 pins::configure_adc_pins();
16}