aboutsummaryrefslogtreecommitdiff
path: root/examples/rp
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/rp
parentc2da49826345e82e7539fce3e96cce203253dc56 (diff)
Adjust all examples to defmt 0.3.
Diffstat (limited to 'examples/rp')
-rw-r--r--examples/rp/Cargo.toml21
1 files changed, 5 insertions, 16 deletions
diff --git a/examples/rp/Cargo.toml b/examples/rp/Cargo.toml
index 9caa37179..37f41b8e8 100644
--- a/examples/rp/Cargo.toml
+++ b/examples/rp/Cargo.toml
@@ -4,30 +4,19 @@ edition = "2018"
4name = "embassy-rp-examples" 4name = "embassy-rp-examples"
5version = "0.1.0" 5version = "0.1.0"
6 6
7[features]
8default = [
9 "defmt-default",
10]
11defmt-default = []
12defmt-trace = []
13defmt-debug = []
14defmt-info = []
15defmt-warn = []
16defmt-error = []
17
18 7
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-rp = { version = "0.1.0", path = "../../embassy-rp", features = ["defmt", "defmt-trace"] } 10embassy-rp = { version = "0.1.0", path = "../../embassy-rp", features = ["defmt"] }
22atomic-polyfill = "0.1.5" 11atomic-polyfill = "0.1.5"
23 12
24defmt = "0.2.3" 13defmt = "0.3"
25defmt-rtt = "0.2.0" 14defmt-rtt = "0.3"
26 15
27cortex-m = { version = "0.7.3", features = ["inline-asm"] } 16cortex-m = { version = "0.7.3", features = ["inline-asm"] }
28cortex-m-rt = "0.7.0" 17cortex-m-rt = "0.7.0"
29embedded-hal = "0.2.6" 18embedded-hal = "0.2.6"
30panic-probe = { version = "0.2.0", features = ["print-defmt"] } 19panic-probe = { version = "0.3", features = ["print-defmt"] }
31futures = { version = "0.3.17", default-features = false, features = ["async-await", "cfg-target-has-atomic", "unstable"] } 20futures = { version = "0.3.17", default-features = false, features = ["async-await", "cfg-target-has-atomic", "unstable"] }
32display-interface-spi = "0.4.1" 21display-interface-spi = "0.4.1"
33embedded-graphics = "0.7.1" 22embedded-graphics = "0.7.1"