Attempt to upgrade various crates

This commit is contained in:
JP Stringham
2025-12-26 17:55:26 -05:00
parent f359f3b718
commit 025979f520
4 changed files with 2166 additions and 93 deletions

View File

@@ -27,16 +27,17 @@ target = "thumbv6m-none-eabi"
# * no-vectorize-loops turns off the loop vectorizer (seeing as the M0+ doesn't
# have SIMD)
rustflags = [
"-C", "linker=flip-link",
"-C", "link-arg=--nmagic",
"-C", "link-arg=-Tlink.x",
"-C", "inline-threshold=5",
"-C", "link-arg=-Tdefmt.x",
"-C", "no-vectorize-loops",
]
# This runner will make a UF2 file and then copy it to a mounted RP2040 in USB
# Bootloader mode:
runner = "elf2uf2-rs -d"
# runner = "elf2uf2-rs -d"
# This runner will find a supported SWD debug probe and flash your RP2040 over
# SWD:
# runner = "probe-run --chip RP2040"
runner = "probe-rs run --chip RP2040 --protocol swd"