aboutsummaryrefslogtreecommitdiff
path: root/examples/stm32wl55
diff options
context:
space:
mode:
authorBob McWhirter <[email protected]>2021-11-15 11:19:19 -0500
committerBob McWhirter <[email protected]>2021-11-15 11:19:19 -0500
commita770fc77c907c50fd2c4a7f6ce934eb45974ae55 (patch)
tree1ffee8ef80106cd53a14a01a8f90c4ff5ef4dd4f /examples/stm32wl55
parentc2da49826345e82e7539fce3e96cce203253dc56 (diff)
Adjust all examples to defmt 0.3.
Diffstat (limited to 'examples/stm32wl55')
-rw-r--r--examples/stm32wl55/Cargo.toml21
1 files changed, 5 insertions, 16 deletions
diff --git a/examples/stm32wl55/Cargo.toml b/examples/stm32wl55/Cargo.toml
index d92f7aa00..00b46696a 100644
--- a/examples/stm32wl55/Cargo.toml
+++ b/examples/stm32wl55/Cargo.toml
@@ -5,34 +5,23 @@ name = "embassy-stm32wl55-examples"
5version = "0.1.0" 5version = "0.1.0"
6resolver = "2" 6resolver = "2"
7 7
8[features]
9default = [
10 "defmt-default",
11]
12defmt-default = []
13defmt-trace = []
14defmt-debug = []
15defmt-info = []
16defmt-warn = []
17defmt-error = []
18
19[dependencies] 8[dependencies]
20embassy = { version = "0.1.0", path = "../../embassy", features = ["defmt", "defmt-trace"] } 9embassy = { version = "0.1.0", path = "../../embassy", features = ["defmt"] }
21embassy-traits = { version = "0.1.0", path = "../../embassy-traits", features = ["defmt"] } 10embassy-traits = { version = "0.1.0", path = "../../embassy-traits", features = ["defmt"] }
22embassy-stm32 = { version = "0.1.0", path = "../../embassy-stm32", features = ["defmt", "defmt-trace", "stm32wl55jc_cm4", "time-driver-tim2", "memory-x", "subghz", "unstable-pac"] } 11embassy-stm32 = { version = "0.1.0", path = "../../embassy-stm32", features = ["defmt", "stm32wl55jc_cm4", "time-driver-tim2", "memory-x", "subghz", "unstable-pac"] }
23embassy-hal-common = {version = "0.1.0", path = "../../embassy-hal-common" } 12embassy-hal-common = {version = "0.1.0", path = "../../embassy-hal-common" }
24embassy-lora = { version = "0.1.0", path = "../../embassy-lora", features = ["stm32wl", "time"] } 13embassy-lora = { version = "0.1.0", path = "../../embassy-lora", features = ["stm32wl", "time"] }
25 14
26lorawan-device = { git = "https://github.com/ivajloip/rust-lorawan.git", rev = "4bff2e0021103adfbccedcbf49dbcd0474adc4b2", default-features = false, features = ["async"] } 15lorawan-device = { git = "https://github.com/ivajloip/rust-lorawan.git", rev = "4bff2e0021103adfbccedcbf49dbcd0474adc4b2", default-features = false, features = ["async"] }
27lorawan-encoding = { git = "https://github.com/ivajloip/rust-lorawan.git", rev = "4bff2e0021103adfbccedcbf49dbcd0474adc4b2", default-features = false, features = ["default-crypto"] } 16lorawan-encoding = { git = "https://github.com/ivajloip/rust-lorawan.git", rev = "4bff2e0021103adfbccedcbf49dbcd0474adc4b2", default-features = false, features = ["default-crypto"] }
28 17
29defmt = "0.2.3" 18defmt = "0.3"
30defmt-rtt = "0.2.0" 19defmt-rtt = "0.3"
31 20
32cortex-m = "0.7.3" 21cortex-m = "0.7.3"
33cortex-m-rt = "0.7.0" 22cortex-m-rt = "0.7.0"
34embedded-hal = "0.2.6" 23embedded-hal = "0.2.6"
35panic-probe = { version = "0.2.0", features = ["print-defmt"] } 24panic-probe = { version = "0.3", features = ["print-defmt"] }
36futures = { version = "0.3.17", default-features = false, features = ["async-await"] } 25futures = { version = "0.3.17", default-features = false, features = ["async-await"] }
37rtt-target = { version = "0.3.1", features = ["cortex-m"] } 26rtt-target = { version = "0.3.1", features = ["cortex-m"] }
38heapless = { version = "0.7.5", default-features = false } 27heapless = { version = "0.7.5", default-features = false }