Skip to content

Commit e12f600

Browse files
authored
Merge pull request #35 from Neotron-Compute/build-fixes
Build fixes
2 parents 8084e8d + 1ecb09c commit e12f600

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

neotron-bmc-nucleo/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@ edition = "2018"
55
version = "0.3.1"
66

77
[dependencies]
8-
cortex-m = "0.7.1"
8+
cortex-m = { version = "0.7.1", features = ["critical-section-single-core"] }
99
cortex-m-rt = "0.7"
1010
defmt = "0.3.0"
11-
defmt-rtt = "0.3.0"
11+
defmt-rtt = "0.4"
1212
cortex-m-rtic = "1.0"
1313
panic-probe = { version = "0.3.0", features = ["print-defmt"] }
1414
stm32f4xx-hal = { version = "0.11", features = ["stm32f401", "rt"] }

neotron-bmc-pico/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,14 @@ edition = "2018"
55
version = "0.4.0"
66

77
[dependencies]
8-
cortex-m = { version = "0.7.5", features = ["inline-asm"] }
8+
cortex-m = { version = "0.7.5", features = ["inline-asm", "critical-section-single-core"] }
99
cortex-m-rtic = "1.0"
1010
debouncr = "0.2"
1111
defmt = "0.3"
12-
defmt-rtt = "0.3"
12+
defmt-rtt = "0.4"
1313
heapless= "0.7"
1414
panic-probe = { version = "0.3", features = ["print-defmt"] }
15-
stm32f0xx-hal = { version = "0.17", features = ["stm32f030x6", "rt"] }
15+
stm32f0xx-hal = { version = "0.18", features = ["stm32f030x6", "rt"] }
1616
neotron-bmc-protocol = { version = "0.1", path = "../neotron-bmc-protocol" }
1717
systick-monotonic = "1.0"
1818
embedded-hal = "*"

0 commit comments

Comments
 (0)