- Add Slint-based ESP32 UI firmware project - Support ESP32-S3 and ESP32-C3 targets - Include ST7789 display driver support - Add touch controller support (XPT2046, FT6X36) - Include pin configuration and hardware requirements - Add build scripts and cargo configuration Co-authored-by: ZeroClaw Agent <zeroclaw_agent@zeroclaw.local>
13 lines
270 B
TOML
13 lines
270 B
TOML
[build]
|
|
target = "riscv32imc-esp-espidf"
|
|
|
|
[target.riscv32imc-esp-espidf]
|
|
linker = "ldproxy"
|
|
rustflags = [
|
|
"--cfg", 'espidf_time64',
|
|
"-C", "default-linker-libraries",
|
|
]
|
|
|
|
[unstable]
|
|
build-std = ["std", "panic_abort"]
|
|
build-std-features = ["panic_immediate_abort"]
|