mirror of
https://github.com/rtic-rs/rtic.git
synced 2024-11-23 20:22:51 +01:00
805ea267a8
* add esp32c3 monotonic * fix tests
16 lines
400 B
TOML
16 lines
400 B
TOML
[target.riscv32imc-unknown-none-elf]
|
|
# Real hardware
|
|
# runner = "espflash flash --monitor"
|
|
|
|
# QEMU emulator
|
|
runner = "./runner.sh"
|
|
|
|
[build]
|
|
rustflags = [
|
|
"-C", "link-arg=-Tlinkall.x",
|
|
# 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 = "riscv32imc-unknown-none-elf"
|