Initial commit

This commit is contained in:
ZacJW 2025-07-04 09:10:36 +01:00
commit 8bfbab5a0c
12 changed files with 687 additions and 0 deletions

23
test-app/Cargo.toml Normal file
View file

@ -0,0 +1,23 @@
[package]
name = "test-app"
version = "0.1.0"
authors = ["ZacJW <zac@zacjw.com>"]
edition = "2021"
resolver = "2"
rust-version = "1.77"
[[bin]]
name = "test-app"
harness = false # do not use the built in cargo test harness -> resolve rust-analyzer errors
[features]
default = []
experimental = ["esp-idf-svc/experimental"]
[dependencies]
log = "0.4"
esp-idf-svc = { version = "0.51", features = ["critical-section", "embassy-time-driver", "embassy-sync"] }
[build-dependencies]
embuild = "0.33"