XIAO
This commit is contained in:
parent
dc4de4c184
commit
dfb4b1e765
10 changed files with 2029 additions and 5 deletions
31
xiao-esp32c6/Cargo.toml
Normal file
31
xiao-esp32c6/Cargo.toml
Normal file
|
|
@ -0,0 +1,31 @@
|
|||
[package]
|
||||
name = "xiao-esp32c6"
|
||||
version = "0.1.0"
|
||||
edition = "2024"
|
||||
|
||||
[[bin]]
|
||||
name = "xiao-esp32c6"
|
||||
harness = false
|
||||
|
||||
[build-dependencies]
|
||||
embuild = "*"
|
||||
|
||||
[dependencies]
|
||||
critical-section = { version = "*", features = ["std"] }
|
||||
embassy-executor = { version = "*", features = ["arch-std", "executor-thread", "log"] }
|
||||
esp-idf-svc = { version = "*", features = ["embassy-time-driver"] }
|
||||
log = "*"
|
||||
riscv-rt = "*"
|
||||
static_cell = "*"
|
||||
|
||||
[features]
|
||||
default = []
|
||||
experimental = ["esp-idf-svc/experimental"]
|
||||
|
||||
[profile.release]
|
||||
opt-level = "s"
|
||||
|
||||
[profile.dev]
|
||||
debug = true
|
||||
opt-level = "z"
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue