radomctld/firmware/Cargo.toml

41 lines
1.4 KiB
TOML
Raw Permalink Normal View History

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"] }
2025-12-23 15:16:17 +01:00
defmt = { version = "1.0", features = ["encoding-rzcobs"] }
2024-07-28 21:41:42 +02:00
defmt-brtt = { version = "0.1", default-features = false, features = ["rtt"] }
2025-12-23 15:16:17 +01:00
panic-probe = { version = "1.0", features = ["print-defmt"] }
2024-07-28 21:41:42 +02:00
rtic = { version = "2.0.1", features = [ "thumbv7-backend" ] }
2025-12-23 15:16:17 +01:00
defmt-rtt = "1.1"
stm32f4xx-hal = { version = "0.23.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"
2025-12-23 15:16:17 +01:00
qmc5883l = {version = "0.0.1", git="https://github.com/patrickelectric/qmc5883l", rev="62b8a64b54e0f843ddf0c5942f8ed218b5f3e492"}
2024-07-28 21:41:42 +02:00
rtic-monotonics = {version = "2.0.2", features = ["cortex-m-systick"]}
2025-12-23 15:16:17 +01:00
xca9548a = "1.0.0"
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"]}
2025-12-23 15:16:17 +01:00
heapless = {version = "0.9.2", features = ["defmt"]}
2024-10-03 18:22:37 +02:00
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 = []