Initial Commit

This commit is contained in:
2026-05-17 22:51:04 +02:00
parent b24c3f42da
commit 35e020c62e
6 changed files with 340 additions and 17 deletions
+3 -2
View File
@@ -1,6 +1,6 @@
[target.'cfg(all(target_arch = "arm", target_os = "none"))']
# TODO(2) replace `$CHIP` with your chip's name (see `probe-rs chip list` output)
runner = "probe-rs run --chip $CHIP"
runner = "probe-rs run --chip STM32H743ZITx"
rustflags = [
"-C", "linker=flip-link",
"-C", "link-arg=-Tlink.x",
@@ -17,9 +17,10 @@ rustflags = [
# target = "thumbv6m-none-eabi" # Cortex-M0 and Cortex-M0+
# target = "thumbv7m-none-eabi" # Cortex-M3
# target = "thumbv7em-none-eabi" # Cortex-M4 and Cortex-M7 (no FPU)
# target = "thumbv7em-none-eabihf" # Cortex-M4F and Cortex-M7F (with FPU)
target = "thumbv7em-none-eabihf" # Cortex-M4F and Cortex-M7F (with FPU)
[alias]
rb = "run --bin"
rrb = "run --release --bin"
bbr = "build --release --bin"
rr = "run --release"