TinFOC/.cargo/config.toml
2024-11-04 13:47:02 -08:00

13 lines
465 B
TOML

[target.thumbv7m-none-eabi]
runner = 'probe-rs run --chip STM32F302R8Tx'
# uncomment this to make `cargo run` execute programs on QEMU
# runner = "qemu-system-arm -cpu cortex-m3 -machine lm3s6965evb -nographic -semihosting-config enable=on,target=native -kernel"
#[target.'cfg(all(target_arch = "arm", target_os = "none"))']
rustflags = []
[build]
target = "thumbv7em-none-eabihf" # Cortex-M4F and Cortex-M7F (with FPU)
[env]
PROBE_RS_CHIP = "STM32F302R8Tx"