From 1f9d4ae2845cc9feb8e55efa0f38ac934f2f106d Mon Sep 17 00:00:00 2001 From: Joe Ardent Date: Mon, 4 Nov 2024 13:47:02 -0800 Subject: [PATCH] add thumbv7m target --- .cargo/config.toml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.cargo/config.toml b/.cargo/config.toml index e888584..4677dc8 100644 --- a/.cargo/config.toml +++ b/.cargo/config.toml @@ -1,8 +1,9 @@ [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"))'] +#[target.'cfg(all(target_arch = "arm", target_os = "none"))'] rustflags = [] [build]