Initial USB bringup

This commit is contained in:
2026-06-04 03:54:34 -07:00
parent 1b653fd31a
commit 9f9f674abb
3 changed files with 202 additions and 17 deletions
+19 -15
View File
@@ -9,25 +9,29 @@ name = "padmapper"
path = "./src/bin/main.rs"
[dependencies]
esp-hal = { version = "~1.0", features = ["defmt", "esp32s3", "unstable"] }
esp-rtos = { version = "0.2.0", features = [
"defmt",
"embassy",
"esp-alloc",
"esp32s3",
] }
defmt = "1.1.0"
esp-bootloader-esp-idf = { version = "0.4.0", features = ["defmt", "esp32s3"] }
critical-section = "1.2.0"
defmt = "1.1.0"
static_cell = "2.1.1"
embassy-executor = { version = "0.9.1", features = ["defmt"] }
embassy-time = { version = "0.5.0", features = ["defmt"] }
esp-alloc = { version = "0.9.0", features = ["defmt"] }
esp-println = { version = "0.17.0", features = ["colors", "defmt-espflash", "esp32s3", "uart"], default-features = false }
embassy-usb = { version = "0.6.0", features = ["defmt"] }
usbd-hid = "0.10.0"
esp-alloc = { version = "0.9.0", features = ["defmt"] }
esp-bootloader-esp-idf = { version = "0.4.0", features = ["defmt", "esp32s3"] }
esp-hal = { version = "~1.0", features = ["defmt", "esp32s3", "unstable"] }
esp-println = { version = "0.17.0", features = ["colors",
"defmt-espflash",
"esp32s3",
"uart"], default-features = false
}
esp-rtos = { version = "0.2.0", features = ["defmt",
"embassy",
"esp-alloc",
"esp32s3",
] }
critical-section = "1.2.0"
static_cell = "2.1.1"
ws2812-rs = "0.3.1"