aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--embassy-nrf-examples/.cargo/config.toml (renamed from embassy-nrf-examples/.cargo/config)2
-rw-r--r--embassy-nrf-examples/Cargo.toml4
-rw-r--r--embassy-rp-examples/.cargo/config.toml (renamed from embassy-rp-examples/.cargo/config)1
-rw-r--r--embassy-rp-examples/Cargo.toml4
-rw-r--r--embassy-stm32-examples/.cargo/config.toml (renamed from embassy-stm32-examples/.cargo/config)0
-rw-r--r--embassy-stm32-examples/Cargo.toml2
6 files changed, 5 insertions, 8 deletions
diff --git a/embassy-nrf-examples/.cargo/config b/embassy-nrf-examples/.cargo/config.toml
index 17b9c8d80..1dbeb002e 100644
--- a/embassy-nrf-examples/.cargo/config
+++ b/embassy-nrf-examples/.cargo/config.toml
@@ -1,6 +1,5 @@
1[unstable] 1[unstable]
2build-std = ["core"] 2build-std = ["core"]
3build-std-features = ["panic_immediate_abort"]
4 3
5[target.'cfg(all(target_arch = "arm", target_os = "none"))'] 4[target.'cfg(all(target_arch = "arm", target_os = "none"))']
6runner = "probe-run --chip nRF52840_xxAA" 5runner = "probe-run --chip nRF52840_xxAA"
@@ -19,4 +18,3 @@ rustflags = [
19 18
20[build] 19[build]
21target = "thumbv7em-none-eabi" 20target = "thumbv7em-none-eabi"
22
diff --git a/embassy-nrf-examples/Cargo.toml b/embassy-nrf-examples/Cargo.toml
index 2a5b52dd9..29614f133 100644
--- a/embassy-nrf-examples/Cargo.toml
+++ b/embassy-nrf-examples/Cargo.toml
@@ -27,5 +27,5 @@ defmt-rtt = "0.2.0"
27cortex-m = { version = "0.7.1", features = ["inline-asm"] } 27cortex-m = { version = "0.7.1", features = ["inline-asm"] }
28cortex-m-rt = "0.6.13" 28cortex-m-rt = "0.6.13"
29embedded-hal = { version = "0.2.4" } 29embedded-hal = { version = "0.2.4" }
30panic-probe = "0.1.0" 30panic-probe = { version = "0.2.0", features = ["print-defmt"] }
31futures = { version = "0.3.8", default-features = false, features = ["async-await"] } \ No newline at end of file 31futures = { version = "0.3.8", default-features = false, features = ["async-await"] }
diff --git a/embassy-rp-examples/.cargo/config b/embassy-rp-examples/.cargo/config.toml
index 8db641544..1bbbe97da 100644
--- a/embassy-rp-examples/.cargo/config
+++ b/embassy-rp-examples/.cargo/config.toml
@@ -1,6 +1,5 @@
1[unstable] 1[unstable]
2build-std = ["core"] 2build-std = ["core"]
3build-std-features = ["panic_immediate_abort"]
4 3
5[target.'cfg(all(target_arch = "arm", target_os = "none"))'] 4[target.'cfg(all(target_arch = "arm", target_os = "none"))']
6runner = "probe-run-rp --chip RP2040" 5runner = "probe-run-rp --chip RP2040"
diff --git a/embassy-rp-examples/Cargo.toml b/embassy-rp-examples/Cargo.toml
index dae22f809..2cee99bc5 100644
--- a/embassy-rp-examples/Cargo.toml
+++ b/embassy-rp-examples/Cargo.toml
@@ -28,5 +28,5 @@ defmt-rtt = "0.2.0"
28cortex-m = { version = "0.7.1", features = ["inline-asm"] } 28cortex-m = { version = "0.7.1", features = ["inline-asm"] }
29cortex-m-rt = "0.6.13" 29cortex-m-rt = "0.6.13"
30embedded-hal = { version = "0.2.4" } 30embedded-hal = { version = "0.2.4" }
31panic-probe = "0.1.0" 31panic-probe = { version = "0.2.0", features = ["print-defmt"] }
32futures = { version = "0.3.8", default-features = false, features = ["async-await", "cfg-target-has-atomic", "unstable"] } \ No newline at end of file 32futures = { version = "0.3.8", default-features = false, features = ["async-await", "cfg-target-has-atomic", "unstable"] }
diff --git a/embassy-stm32-examples/.cargo/config b/embassy-stm32-examples/.cargo/config.toml
index 7c1d4dfb6..7c1d4dfb6 100644
--- a/embassy-stm32-examples/.cargo/config
+++ b/embassy-stm32-examples/.cargo/config.toml
diff --git a/embassy-stm32-examples/Cargo.toml b/embassy-stm32-examples/Cargo.toml
index f12ed9101..bdb1ca84a 100644
--- a/embassy-stm32-examples/Cargo.toml
+++ b/embassy-stm32-examples/Cargo.toml
@@ -46,7 +46,7 @@ defmt-rtt = "0.2.0"
46cortex-m = "0.7.1" 46cortex-m = "0.7.1"
47cortex-m-rt = "0.6.13" 47cortex-m-rt = "0.6.13"
48embedded-hal = { version = "0.2.4" } 48embedded-hal = { version = "0.2.4" }
49panic-probe = "0.1.0" 49panic-probe = { version = "0.2.0", features = ["print-defmt"] }
50futures = { version = "0.3.8", default-features = false, features = ["async-await"] } 50futures = { version = "0.3.8", default-features = false, features = ["async-await"] }
51rtt-target = { version = "0.3", features = ["cortex-m"] } 51rtt-target = { version = "0.3", features = ["cortex-m"] }
52bxcan = "0.5.0" 52bxcan = "0.5.0"