diff options
| author | liebman <[email protected]> | 2025-10-26 11:44:10 -0700 |
|---|---|---|
| committer | liebman <[email protected]> | 2025-11-03 12:50:41 -0800 |
| commit | 0d6e782b6405332ebc8251f18017d005dc3f370a (patch) | |
| tree | 7713670a81934928dcfdad59f5c78938f0e14099 | |
| parent | 57f0284f13859fd7b2fb9c3870f7624439924990 (diff) | |
stm32wlex: remove gratuitous log
| -rw-r--r-- | embassy-stm32/src/low_power.rs | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/embassy-stm32/src/low_power.rs b/embassy-stm32/src/low_power.rs index 0ee81fd18..ecb36a8d7 100644 --- a/embassy-stm32/src/low_power.rs +++ b/embassy-stm32/src/low_power.rs | |||
| @@ -125,7 +125,6 @@ foreach_interrupt! { | |||
| 125 | 125 | ||
| 126 | #[allow(dead_code)] | 126 | #[allow(dead_code)] |
| 127 | pub(crate) unsafe fn on_wakeup_irq() { | 127 | pub(crate) unsafe fn on_wakeup_irq() { |
| 128 | info!("low power: on wakeup irq: extscr: {:?}", crate::pac::PWR.extscr().read()); | ||
| 129 | EXECUTOR.as_mut().unwrap().on_wakeup_irq(); | 128 | EXECUTOR.as_mut().unwrap().on_wakeup_irq(); |
| 130 | } | 129 | } |
| 131 | 130 | ||
| @@ -343,9 +342,9 @@ impl Executor { | |||
| 343 | { | 342 | { |
| 344 | let es = crate::pac::PWR.extscr().read(); | 343 | let es = crate::pac::PWR.extscr().read(); |
| 345 | match (es.c1stopf(), es.c1stop2f()) { | 344 | match (es.c1stopf(), es.c1stop2f()) { |
| 346 | (true, false) => trace!("low power: wake from STOP1"), | 345 | (true, false) => debug!("low power: wake from STOP1"), |
| 347 | (false, true) => trace!("low power: wake from STOP2"), | 346 | (false, true) => debug!("low power: wake from STOP2"), |
| 348 | (true, true) => trace!("low power: wake from STOP1 and STOP2 ???"), | 347 | (true, true) => debug!("low power: wake from STOP1 and STOP2 ???"), |
| 349 | (false, false) => trace!("low power: stop mode not entered"), | 348 | (false, false) => trace!("low power: stop mode not entered"), |
| 350 | }; | 349 | }; |
| 351 | crate::pac::PWR.extscr().modify(|w| { | 350 | crate::pac::PWR.extscr().modify(|w| { |
