stop->sequence_stop

This commit is contained in:
Jacob Rosenthal 2021-10-31 23:00:33 -07:00
parent 96df2fdb43
commit 78e382c9aa
2 changed files with 3 additions and 3 deletions

View file

@ -276,7 +276,7 @@ impl<'d, T: Instance> Pwm<'d, T> {
/// Stop playback
#[inline(always)]
pub fn stop(&self) {
pub fn sequence_stop(&self) {
let r = T::regs();
r.shorts.write(|w| unsafe { w.bits(0x0) });
@ -363,7 +363,7 @@ impl<'d, T: Instance> Pwm<'d, T> {
impl<'a, T: Instance> Drop for Pwm<'a, T> {
fn drop(&mut self) {
self.stop();
self.sequence_stop();
self.disable();
info!("pwm drop: done");

View file

@ -38,7 +38,7 @@ async fn main(_spawner: Spawner, p: Peripherals) {
Timer::after(Duration::from_millis(20000)).await;
pwm.stop();
pwm.sequence_stop();
info!("pwm stopped!");
loop {