Skip to content

Commit

Permalink
Fix log strings (esp-rs#292)
Browse files Browse the repository at this point in the history
  • Loading branch information
bugadani authored and bjoernQ committed May 23, 2024
1 parent b95b23c commit 6d149b2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion esp-wifi/src/common_adapter/common_adapter_esp32c3.rs
Original file line number Diff line number Diff line change
Expand Up @@ -167,5 +167,5 @@ pub(crate) unsafe fn phy_disable_clock() {
unwrap!(RADIO_CLOCKS.as_mut()).disable(RadioPeripherals::Phy);
});

trace!("phy_enable_clock done!");
trace!("phy_disable_clock done!");
}
2 changes: 1 addition & 1 deletion esp-wifi/src/common_adapter/common_adapter_esp32s3.rs
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ pub(crate) unsafe fn phy_disable_clock() {
unwrap!(RADIO_CLOCKS.as_mut()).disable(RadioPeripherals::Phy);
});

trace!("phy_enable_clock done!");
trace!("phy_disable_clock done!");
}

#[no_mangle]
Expand Down

0 comments on commit 6d149b2

Please sign in to comment.