Actually just use defmt-brtt without default features

This commit is contained in:
datdenkikniet
2023-05-01 11:04:25 +02:00
parent b8d8591112
commit b969f75371
+2 -5
View File
@@ -7,11 +7,8 @@ version = "0.1.0"
[dependencies] [dependencies]
cortex-m = { version = "0.7", features = ["critical-section-single-core"] } cortex-m = { version = "0.7", features = ["critical-section-single-core"] }
defmt = "0.3" defmt = { version = "0.3", features = ["encoding-rzcobs"]
defmt-rtt = "0.4" defmt-brtt = { version = "0.1", default-features = false, features = ["rtt"] }
# Use the logger below instead if you also want to use
# non-RTT transports.
# defmt-brtt = "0.1"
panic-probe = { version = "0.3", features = ["print-defmt"] } panic-probe = { version = "0.3", features = ["print-defmt"] }
# TODO select the correct rtic backend # TODO select the correct rtic backend
rtic = { version = "2.0.0-alpha.1", features = [ "correct-rtic-backend" ] } rtic = { version = "2.0.0-alpha.1", features = [ "correct-rtic-backend" ] }