mirror of
https://github.com/rtic-rs/rtic.git
synced 2024-11-23 20:22:51 +01:00
e4cc5fd17b
* CI: ESP32-C3: QEMU support * CI: ESP32C3: Script for preparing and running * CI: gitignore qemu.log * ESP32-C3: Example sw_and_hw output
19 lines
432 B
TOML
19 lines
432 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"
|
|
|
|
[unstable]
|
|
build-std = ["core"]
|