Initial commit
This commit is contained in:
commit
639ee2af7f
11 changed files with 1844 additions and 0 deletions
24
Cargo.toml
Normal file
24
Cargo.toml
Normal file
|
|
@ -0,0 +1,24 @@
|
|||
[package]
|
||||
name = "cardputer-bsc-nostd"
|
||||
version = "0.1.0"
|
||||
edition = "2024"
|
||||
|
||||
[lib]
|
||||
harness = false
|
||||
|
||||
[profile.release]
|
||||
opt-level = "s"
|
||||
debug = true
|
||||
|
||||
[profile.dev]
|
||||
debug = true # Symbols are nice and they don't increase the size on Flash
|
||||
opt-level = "z"
|
||||
|
||||
[dependencies]
|
||||
embedded-hal-bus = "0.3.0"
|
||||
esp-hal = {version = "=1.0.0-beta.1", features = ["esp32s3", "unstable"]}
|
||||
mipidsi = "0.9.0"
|
||||
thiserror = {version = "2.0.11", default-features = false}
|
||||
|
||||
[workspace]
|
||||
members = ["examples/*"]
|
||||
Loading…
Add table
Add a link
Reference in a new issue