mirror of
https://github.com/italicsjenga/rp-hal-boards.git
synced 2024-12-24 05:01:31 +11:00
0fa6bf9e0e
Trying to clarify what is HAL specific and what is RP specific.
14 lines
339 B
Plaintext
14 lines
339 B
Plaintext
[build]
|
|
# Instruction set of Cortex-M0+
|
|
target = "thumbv6m-none-eabi"
|
|
|
|
[target.'cfg(all(target_arch = "arm", target_os = "none"))']
|
|
rustflags = [
|
|
"-C", "link-arg=--nmagic",
|
|
"-C", "link-arg=-Tlink.x",
|
|
"-C", "inline-threshold=5",
|
|
"-C", "no-vectorize-loops",
|
|
]
|
|
runner = "elf2uf2-rs -d"
|
|
# runner = "probe-run-rp --chip RP2040"
|