15 lines
366 B
TOML
15 lines
366 B
TOML
[build]
|
|
target = "thumbv6m-none-eabi"
|
|
|
|
# Target specific options
|
|
[target.thumbv6m-none-eabi]
|
|
|
|
# This runner will make a UF2 file and then copy it to a mounted RP2040 in USB
|
|
# Bootloader mode:
|
|
runner = "elf2uf2-rs -d"
|
|
|
|
# runner = "probe-rs run --chip RP2040"
|
|
|
|
[env]
|
|
DEFMT_RTT_BUFFER_SIZE = { value = "4096", force = true }
|
|
DEFMT_LOG = { value = "info", force = true } |