From 17e92a8856a392553180e876c579d80f9bfde089 Mon Sep 17 00:00:00 2001 From: Keenan Tims Date: Sun, 3 May 2026 02:11:06 -0700 Subject: [PATCH] not outputting to defmt helps a lot, but need to get the clocks correct and implement feedback --- examples/lpc55s28-evk/src/main.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/lpc55s28-evk/src/main.rs b/examples/lpc55s28-evk/src/main.rs index b9f91b1..b12148b 100644 --- a/examples/lpc55s28-evk/src/main.rs +++ b/examples/lpc55s28-evk/src/main.rs @@ -108,7 +108,7 @@ impl Audio { if stat.txerr().bit_is_set() { self.i2s.i2s.fifostat.modify(|_, w| w.txerr().set_bit()); - defmt::error!("fifo tx error, txlvl: {}", stat.txlvl().bits()); + // defmt::error!("fifo tx error, txlvl: {}", stat.txlvl().bits()); } if stat.txlvl().bits() <= 6 { // fifo is 8 deep @@ -122,7 +122,7 @@ impl Audio { .fifowr .write(|w| unsafe { w.bits(sample.1 as u32) }); } else { - defmt::error!("queue underflow"); + // defmt::error!("queue underflow"); self.i2s.i2s.fifowr.write(|w| unsafe { w.bits(0 as u32) }); } }