This commit is contained in:
2023-06-12 17:39:07 +02:00
parent 59f91e2f6b
commit 9854e0c0a8
45 changed files with 4708 additions and 400 deletions

12
.cargo/config.toml Normal file
View File

@ -0,0 +1,12 @@
[build]
target = "thumbv6m-none-eabi"
[target.thumbv6m-none-eabi]
rustflags = [
"-C", "linker=flip-link",
"-C", "inline-threshold=5", # inline functions more aggressively
"-C", "no-vectorize-loops",
]
#runner = "elf2uf2-rs -d"
runner = "probe-run --chip RP2040"