roleplay-microcontrolllers/.cargo/config.toml

19 lines
436 B
TOML
Raw Permalink Normal View History

2025-06-26 16:04:37 +02:00
[target.riscv32imc-unknown-none-elf]
2025-06-27 22:39:25 +02:00
runner = "espflash flash --monitor --chip esp32c3 --partition-table ./partitions.csv"
2025-06-26 16:04:37 +02:00
[env]
2025-06-27 22:39:25 +02:00
ESP_LOG = "info"
2025-06-26 16:04:37 +02:00
[build]
rustflags = [
2025-06-27 22:39:25 +02:00
# Required to obtain backtraces (e.g. when using the "esp-backtrace" crate.)
# NOTE: May negatively impact performance of produced code
"-C",
"force-frame-pointers",
2025-06-26 16:04:37 +02:00
]
target = "riscv32imc-unknown-none-elf"
[unstable]
build-std = ["alloc", "core"]