2024-07-28 21:41:42 +02:00
|
|
|
[package]
|
|
|
|
name = "radomctl-firmware"
|
|
|
|
edition = "2021"
|
|
|
|
version = "0.1.0"
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
cortex-m = { version = "0.7", features = ["critical-section-single-core"] }
|
|
|
|
defmt = { version = "0.3", features = ["encoding-rzcobs"] }
|
|
|
|
defmt-brtt = { version = "0.1", default-features = false, features = ["rtt"] }
|
|
|
|
panic-probe = { version = "0.3", features = ["print-defmt"] }
|
|
|
|
rtic = { version = "2.0.1", features = [ "thumbv7-backend" ] }
|
|
|
|
defmt-rtt = "0.4"
|
2024-10-03 18:22:37 +02:00
|
|
|
stm32f4xx-hal = { version = "0.21.0", features = ["stm32f401", "usb_fs"] }
|
2024-07-28 21:41:42 +02:00
|
|
|
embedded-hal = {version = "1.0.0"}
|
|
|
|
nb = "1.0.0"
|
|
|
|
num-traits = { version = "0.2", default-features = false, features = ["libm"] }
|
|
|
|
num = {version = "0.4", default-features = false}
|
|
|
|
ufmt = "0.2.0"
|
|
|
|
qmc5883l = "0.0.1"
|
|
|
|
rtic-monotonics = {version = "2.0.2", features = ["cortex-m-systick"]}
|
|
|
|
xca9548a = "0.2.1"
|
2024-08-03 22:18:09 +02:00
|
|
|
as5048a = { git = "https://github.com/LongHairedHacker/as5048a", rev="b15d716bf47ce4975a6cefebf82006c9b09e8fea"}
|
2024-10-03 18:22:37 +02:00
|
|
|
usb-device = "0.3.2"
|
|
|
|
usbd-serial = "0.2.2"
|
|
|
|
postcard = {version = "1.0.10", features = ["use-defmt"]}
|
|
|
|
heapless = {version = "0.8.0", features = ["defmt-03"]}
|
|
|
|
radomctl-protocol = { path = "../protocol" }
|
|
|
|
|
2024-07-28 21:41:42 +02:00
|
|
|
|
|
|
|
[features]
|
|
|
|
# set logging levels here
|
|
|
|
default = ["defmt-default"]
|
|
|
|
|
|
|
|
# do NOT modify these features
|
|
|
|
defmt-default = []
|
|
|
|
defmt-trace = []
|
|
|
|
defmt-debug = []
|
|
|
|
defmt-info = []
|
|
|
|
defmt-warn = []
|
|
|
|
defmt-error = []
|