Skip to content

Commit

Permalink
1us delay between dma start and tx_start (like idf)
Browse files Browse the repository at this point in the history
  • Loading branch information
liebman committed Oct 18, 2024
1 parent 127e392 commit 498d12a
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions esp-hal/src/i2s_parallel.rs
Original file line number Diff line number Diff line change
Expand Up @@ -384,6 +384,7 @@ impl<'d, I: Instance, DM: Mode> I2sParallel<'d, I, DM> {
if let Err(err) = result {
return Err((err, self, data));
}
crate::rom::ets_delay_us(1);
I::tx_start();
Ok(I2sParallelTransfer {
i2s: ManuallyDrop::new(self),
Expand Down

0 comments on commit 498d12a

Please sign in to comment.