Skip to content

Commit

Permalink
Fixed build missing critical section
Browse files Browse the repository at this point in the history
  • Loading branch information
blueluna committed Dec 22, 2023
1 parent 7f697eb commit 8659fc0
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion adafruit-feather-nrf52840-express/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ readme = "README.md"
edition = "2018"

[dependencies]
cortex-m = "0.7"
cortex-m = { version = "0.7", features = ["critical-section-single-core"] }
cortex-m-rt = "0.7"
defmt = "0.3"
defmt-rtt = "0.3"
Expand Down
2 changes: 1 addition & 1 deletion nrf52840-dk/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ readme = "README.md"
edition = "2018"

[dependencies]
cortex-m = "0.7"
cortex-m = { version = "0.7", features = ["critical-section-single-core"] }
cortex-m-rt = "0.7"
defmt = "0.3"
defmt-rtt = "0.3"
Expand Down
2 changes: 1 addition & 1 deletion nrf52840-mdk/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ edition = "2018"

[dev-dependencies]
bbqueue = "0.5"
cortex-m = "0.7"
cortex-m = { version = "0.7", features = ["critical-section-single-core"] }
cortex-m-rt = "0.7"
cortex-m-rtic = "1.1"
defmt = "0.3"
Expand Down

0 comments on commit 8659fc0

Please sign in to comment.