Initial commit

This commit is contained in:
ZacJW 2025-07-12 14:20:37 +01:00
commit 639ee2af7f
11 changed files with 1844 additions and 0 deletions

View file

@ -0,0 +1,25 @@
[package]
name = "display_test"
version = "0.1.0"
edition = "2024"
[[bin]]
name = "display_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 = "../.." }
embedded-graphics = "0.8.1"
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"