omnibus commit. hid stats. dac trait improvements. refactor to state machine style.

This commit is contained in:
2026-05-10 01:20:01 -07:00
parent ece2b68d1b
commit 3e726010c7
10 changed files with 636 additions and 89 deletions
+6 -2
View File
@@ -4,13 +4,16 @@ version = "0.1.0"
edition = "2024"
[features]
default = ["cs4398", "hid"]
default = ["nodac", "hid"]
ak4490 = []
cs4398 = []
hid = []
nodac = []
hid = [ "dep:usbd-hid"]
[dependencies]
atomic = "0.6.1"
bbqueue = "0.7.0"
bytemuck = { version = "1.25.0", features = ["derive"] }
cortex-m = { version = "0.7.7", features = ["critical-section-single-core"] }
cortex-m-rt = "0.7.5"
defmt = "1.0.1"
@@ -24,6 +27,7 @@ panic-halt = "1.0.0"
panic-probe = { version = "1.0.0", features = ["print-defmt"] }
static_cell = "2.1.1"
usb-device = "0.3"
usbd-hid = { version = "0.10.0", optional = true }
usbd-uac2 = { version = "0.1.0", path = "../usbd_uac2", features = ["defmt"]}
[profile.release]