Updates the reporting logic to wait for any key press or depress before reading all keys and sending an update of all of the keys Signed-off-by: Nicholas Mello <nick@nmello.dev>
21 lines
915 B
TOML
21 lines
915 B
TOML
[package]
|
|
name = "arcade-keyboard"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
|
|
[dependencies]
|
|
cortex-m-rt = "0.7.5"
|
|
defmt = "1.1.1"
|
|
defmt-rtt = "1.3.0"
|
|
embassy-executor = { version = "0.10.0", features = ["executor-thread", "platform-cortex-m"] }
|
|
embassy-futures = { version = "0.1.2", features = ["defmt"] }
|
|
embassy-rp = { version = "0.10.0", features = ["chrono", "defmt", "rp2040", "rt", "time-driver", "critical-section-impl"] }
|
|
embassy-sync = { version = "0.8.0", features = ["defmt"] }
|
|
embassy-time = "0.5.1"
|
|
embassy-usb = { version = "0.6.0", features = ["defmt"] }
|
|
embedded-alloc = "0.7.0"
|
|
futures-util = { version = "0.3.33", default-features = false, features = ["alloc", "portable-atomic-alloc"] }
|
|
panic-probe = { version = "1.0.0", features = ["defmt"] }
|
|
portable-atomic = { version = "1.14.0", default-features = false, features = ["critical-section"] }
|
|
usbd-hid = { version = "0.10.0", features = ["defmt"] }
|