Skip to content

Commit

Permalink
if run at 240MHz (CPU) delay needs to be bigger
Browse files Browse the repository at this point in the history
  • Loading branch information
liebman committed Oct 25, 2024
1 parent 647f2e0 commit fcecfef
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 @@ -622,7 +622,7 @@ pub trait Instance: Signals + RegBlock {
fn tx_reset(&self) {
let r = self.register_block();
r.conf().modify(|_, w| w.tx_reset().set_bit());
xtensa_lx::timer::delay(20);
xtensa_lx::timer::delay(100);
r.conf().modify(|_, w| w.tx_reset().clear_bit());
}

Expand Down

0 comments on commit fcecfef

Please sign in to comment.