Skip to content

Commit

Permalink
Prepare release 0.3.0 (esp-rs#424)
Browse files Browse the repository at this point in the history
* Bump esp-wifi-sys

* Fix code warning

* Fix test script

* Bump esp-wifi

* Prepare CHANGELOG.md for next release cycle
  • Loading branch information
bjoernQ committed May 24, 2024
1 parent f633182 commit 48524a1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
4 changes: 2 additions & 2 deletions esp-wifi/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "esp-wifi"
version = "0.2.0"
version = "0.3.0"
edition = "2021"
authors = [
"The ESP-RS team",
Expand Down Expand Up @@ -42,7 +42,7 @@ fugit.workspace = true
heapless = { workspace = true, default-features = false }
num-derive = { workspace = true }
num-traits = { workspace = true, default-features = false }
esp-wifi-sys = { version = "0.2.0", path = "../esp-wifi-sys" }
esp-wifi-sys = { version = "0.3.0", path = "../esp-wifi-sys" }
embassy-sync = { workspace = true, optional = true }
embassy-futures = { workspace = true, optional = true }
embassy-net-driver = { workspace = true, optional = true }
Expand Down
4 changes: 1 addition & 3 deletions esp-wifi/src/timer/riscv.rs
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,7 @@ pub const TICKS_PER_SECOND: u64 = 16_000_000;

pub fn setup_timer(systimer: TimeBase) {
// make sure the scheduling won't start before everything is setup
unsafe {
riscv::interrupt::disable();
}
riscv::interrupt::disable();

let alarm0 = systimer.into_periodic();
alarm0.set_period(TIMESLICE_FREQUENCY.into_duration());
Expand Down

0 comments on commit 48524a1

Please sign in to comment.