Merge remote-tracking branch 'knurling/main' into v2

This commit is contained in:
datdenkikniet
2023-04-22 22:16:47 +02:00
6 changed files with 16 additions and 62 deletions
+5 -8
View File
@@ -2,17 +2,14 @@
# TODO fix `authors` and `name` if you didn't use `cargo-generate`
authors = ["{{authors}}"]
name = "{{project-name}}"
edition = "2018"
edition = "2021"
version = "0.1.0"
[workspace]
members = ["testsuite"]
[dependencies]
defmt = "0.3.0"
defmt-rtt = "0.3.0"
panic-probe = { version = "0.3.0", features = ["print-defmt"] }
cortex-m = "0.7"
cortex-m = { version = "0.7", features = ["critical-section-single-core"] }
defmt = "0.3"
defmt-rtt = "0.4"
panic-probe = { version = "0.3", features = ["print-defmt"] }
# TODO select the correct rtic backend
rtic = { version = "2.0.0-alpha.1", features = [ "correct-rtic-backend" ] }
# TODO enter your HAL here