aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJacob Rosenthal <[email protected]>2021-11-10 17:25:38 -0700
committerJacob Rosenthal <[email protected]>2021-11-10 17:25:38 -0700
commit6dcc731065ff7a4e9515f21172b309f50155c353 (patch)
treed6287dfb50779102fd49aab34bd37baa568557d5
parent5f28153b811caf1e47b51d87eae74d36eeff9a7e (diff)
drop the debug
-rw-r--r--embassy-nrf/src/pwm.rs4
1 files changed, 0 insertions, 4 deletions
diff --git a/embassy-nrf/src/pwm.rs b/embassy-nrf/src/pwm.rs
index 252e6385e..c91cf9a7f 100644
--- a/embassy-nrf/src/pwm.rs
+++ b/embassy-nrf/src/pwm.rs
@@ -262,8 +262,6 @@ impl<'a, T: Instance> Drop for SequencePwm<'a, T> {
262 pin.conf().write(|w| w); 262 pin.conf().write(|w| w);
263 r.psel.out[3].write(|w| unsafe { w.bits(0x80000000) }); 263 r.psel.out[3].write(|w| unsafe { w.bits(0x80000000) });
264 } 264 }
265
266 info!("pwm drop: done");
267 } 265 }
268} 266}
269 267
@@ -553,8 +551,6 @@ impl<'a, T: Instance> Drop for SimplePwm<'a, T> {
553 pin.conf().write(|w| w); 551 pin.conf().write(|w| w);
554 r.psel.out[3].write(|w| unsafe { w.bits(0x80000000) }); 552 r.psel.out[3].write(|w| unsafe { w.bits(0x80000000) });
555 } 553 }
556
557 info!("pwm drop: done");
558 } 554 }
559} 555}
560 556