wip: experimental async usb stack

This commit is contained in:
Dario Nieuwenhuis
2022-03-09 01:34:35 +01:00
parent c1b3822964
commit 37598a5b37
15 changed files with 2624 additions and 186 deletions

12
embassy-usb/Cargo.toml Normal file
View File

@ -0,0 +1,12 @@
[package]
name = "embassy-usb"
version = "0.1.0"
edition = "2018"
[dependencies]
embassy = { version = "0.1.0", path = "../embassy" }
defmt = { version = "0.3", optional = true }
log = { version = "0.4.14", optional = true }
cortex-m = "0.7.3"
num-traits = { version = "0.2.14", default-features = false }