Skip to content

Commit

Permalink
Fix not registering I2S interrupts when only using TX
Browse files Browse the repository at this point in the history
  • Loading branch information
bugadani committed Jan 20, 2025
1 parent c9e861a commit a9909ee
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions esp-hal/src/dma/pdma/i2s.rs
Original file line number Diff line number Diff line change
Expand Up @@ -138,11 +138,11 @@ impl TxRegisterAccess for AnyI2sDmaTxChannel {
}

fn peripheral_interrupt(&self) -> Option<Interrupt> {
None
Some(self.0.peripheral_interrupt())
}

fn async_handler(&self) -> Option<InterruptHandler> {
None
Some(self.0.async_handler())
}
}

Expand Down

0 comments on commit a9909ee

Please sign in to comment.