From d6c65cd0e4b651b1b07e1583562dfccfd5db22b1 Mon Sep 17 00:00:00 2001 From: James Munns Date: Mon, 15 Dec 2025 14:33:47 +0100 Subject: Update example to not explicitly configure range --- examples/mcxa/src/bin/clkout.rs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'examples/mcxa/src') diff --git a/examples/mcxa/src/bin/clkout.rs b/examples/mcxa/src/bin/clkout.rs index ba7c8185e..e6e6a2d3d 100644 --- a/examples/mcxa/src/bin/clkout.rs +++ b/examples/mcxa/src/bin/clkout.rs @@ -4,7 +4,7 @@ use embassy_executor::Spawner; use embassy_mcxa::clkout::{ClockOut, ClockOutSel, Config, Div4}; use embassy_mcxa::clocks::PoweredClock; -use embassy_mcxa::clocks::config::{SoscConfig, SoscMode, SoscRange}; +use embassy_mcxa::clocks::config::{SoscConfig, SoscMode}; use embassy_mcxa::gpio::{DriveStrength, Level, Output, SlewRate}; use embassy_time::Timer; use {defmt_rtt as _, embassy_mcxa as hal, panic_probe as _}; @@ -16,7 +16,6 @@ async fn main(_spawner: Spawner) { cfg.clock_cfg.sosc = Some(SoscConfig { mode: SoscMode::CrystalOscillator, frequency: 8_000_000, - range: SoscRange::Mhz8To16, power: PoweredClock::NormalEnabledDeepSleepDisabled, }); -- cgit