This commit is contained in:
andromeda
2026-04-05 21:11:02 +02:00
commit 399d59d5e7
11 changed files with 1416 additions and 0 deletions

17
.cargo/config.toml Normal file
View File

@@ -0,0 +1,17 @@
[target.riscv32imac-unknown-none-elf]
runner = "sudo espflash flash --monitor --chip esp32c6"
[env]
ESP_LOG="info"
[build]
rustflags = [
# Required to obtain backtraces (e.g. when using the "esp-backtrace" crate.)
# NOTE: May negatively impact performance of produced code
"-C", "force-frame-pointers",
]
target = "riscv32imac-unknown-none-elf"
[unstable]
build-std = ["core"]