Skip to content

Commit

Permalink
use 20 clocks instead of 1us
Browse files Browse the repository at this point in the history
  • Loading branch information
liebman committed Oct 17, 2024
1 parent 00906b3 commit 104ecb2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion esp-hal/src/i2s_parallel.rs
Original file line number Diff line number Diff line change
Expand Up @@ -595,7 +595,7 @@ pub trait Instance: Signals + RegBlock {
fn tx_reset() {
let r = Self::register_block();
r.conf().modify(|_, w| w.tx_reset().set_bit());
crate::rom::ets_delay_us(1);
xtensa_lx::timer::delay(20);
r.conf().modify(|_, w| w.tx_reset().clear_bit());
}

Expand Down

0 comments on commit 104ecb2

Please sign in to comment.