From fe355af4f0c17e3612fbf89d19e551bdebd6dac9 Mon Sep 17 00:00:00 2001 From: Dario Nieuwenhuis Date: Thu, 19 Aug 2021 17:11:17 +0200 Subject: [PATCH 1/2] nrf: update to cortex-m-rt 0.7 --- embassy-nrf/Cargo.toml | 14 +++++++------- examples/nrf/Cargo.toml | 2 +- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/embassy-nrf/Cargo.toml b/embassy-nrf/Cargo.toml index 7a6963f9..cc359752 100644 --- a/embassy-nrf/Cargo.toml +++ b/embassy-nrf/Cargo.toml @@ -42,10 +42,10 @@ futures = { version = "0.3.5", default-features = false } critical-section = "0.2.1" rand_core = "0.6.3" -nrf52805-pac = { version = "0.10.0", optional = true, features = [ "rt" ]} -nrf52810-pac = { version = "0.10.0", optional = true, features = [ "rt" ]} -nrf52811-pac = { version = "0.10.0", optional = true, features = [ "rt" ]} -nrf52820-pac = { version = "0.10.0", optional = true, features = [ "rt" ]} -nrf52832-pac = { version = "0.10.0", optional = true, features = [ "rt" ]} -nrf52833-pac = { version = "0.10.0", optional = true, features = [ "rt" ]} -nrf52840-pac = { version = "0.10.0", optional = true, features = [ "rt" ]} +nrf52805-pac = { version = "0.10.1", optional = true, features = [ "rt" ]} +nrf52810-pac = { version = "0.10.1", optional = true, features = [ "rt" ]} +nrf52811-pac = { version = "0.10.1", optional = true, features = [ "rt" ]} +nrf52820-pac = { version = "0.10.1", optional = true, features = [ "rt" ]} +nrf52832-pac = { version = "0.10.1", optional = true, features = [ "rt" ]} +nrf52833-pac = { version = "0.10.1", optional = true, features = [ "rt" ]} +nrf52840-pac = { version = "0.10.1", optional = true, features = [ "rt" ]} diff --git a/examples/nrf/Cargo.toml b/examples/nrf/Cargo.toml index 8db0ad53..f410f89c 100644 --- a/examples/nrf/Cargo.toml +++ b/examples/nrf/Cargo.toml @@ -25,7 +25,7 @@ defmt = "0.2.0" defmt-rtt = "0.2.0" cortex-m = { version = "0.7.1", features = ["inline-asm"] } -cortex-m-rt = "0.6.13" +cortex-m-rt = "0.7.0" embedded-hal = { version = "0.2.4" } panic-probe = { version = "0.2.0", features = ["print-defmt"] } futures = { version = "0.3.8", default-features = false, features = ["async-await"] } From daab542fc4160b4ecdbfc1070d410c59bde9bd69 Mon Sep 17 00:00:00 2001 From: Dario Nieuwenhuis Date: Thu, 19 Aug 2021 17:11:38 +0200 Subject: [PATCH 2/2] wl55: update to cortex-m-rt 0.7 --- examples/stm32wl55/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/stm32wl55/Cargo.toml b/examples/stm32wl55/Cargo.toml index ebbe8b84..a7313e33 100644 --- a/examples/stm32wl55/Cargo.toml +++ b/examples/stm32wl55/Cargo.toml @@ -26,7 +26,7 @@ defmt = "0.2.0" defmt-rtt = "0.2.0" cortex-m = "0.7.1" -cortex-m-rt = "0.6.14" +cortex-m-rt = "0.7.0" embedded-hal = { version = "0.2.4" } panic-probe = { version = "0.2.0", features= ["print-defmt"] } futures = { version = "0.3.8", default-features = false, features = ["async-await"] }