Added keyboard_test example
This commit is contained in:
parent
4853df4cc9
commit
15c7b0ef1e
4 changed files with 150 additions and 0 deletions
24
examples/keyboard_test/Cargo.toml
Normal file
24
examples/keyboard_test/Cargo.toml
Normal file
|
|
@ -0,0 +1,24 @@
|
|||
[package]
|
||||
name = "keyboard_test"
|
||||
version = "0.1.0"
|
||||
edition = "2024"
|
||||
|
||||
[[bin]]
|
||||
name = "keyboard_test"
|
||||
harness = false # do not use the built in cargo test harness -> resolve rust-analyzer errors
|
||||
|
||||
[profile.release]
|
||||
opt-level = "s"
|
||||
debug = true
|
||||
panic = "abort"
|
||||
|
||||
[profile.dev]
|
||||
debug = true # Symbols are nice and they don't increase the size on Flash
|
||||
opt-level = "z"
|
||||
panic = "abort"
|
||||
|
||||
[dependencies]
|
||||
cardputer-bsc-nostd = { version = "0.1.0", path = "../.." }
|
||||
esp-hal = {version = "=1.0.0-beta.1", features = ["esp32s3", "unstable"]}
|
||||
esp-println = { version = "0.14.0", features = ["esp32s3"] }
|
||||
esp-bootloader-esp-idf = "0.1.0"
|
||||
Loading…
Add table
Add a link
Reference in a new issue