-
Notifications
You must be signed in to change notification settings - Fork 104
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Make runner command selectable (#74)
- Loading branch information
Showing
3 changed files
with
49 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
[target.'cfg(all(target_arch = "arm", target_os = "none"))'] | ||
# Choose a default "cargo run" tool (see README for more info) | ||
# - `probe-rs` provides flashing and defmt via a hardware debugger, and stack unwind on panic | ||
# - elf2uf2-rs loads firmware over USB when the rp2040 is in boot mode | ||
# runner = "probe-rs run --chip RP2040 --protocol swd" | ||
# runner = "elf2uf2-rs -d" | ||
{% case flash_method -%} | ||
{%- when "probe-rs" -%} | ||
runner = "probe-rs run --chip RP2040 --protocol swd" | ||
{%- when "elf2uf2-rs" -%} | ||
runner = "elf2uf2-rs -d" | ||
{%- when "none" -%} | ||
{%- else -%} | ||
{%- if flash_method != "" -%} | ||
runner = "{{ flash_method_custom }}" | ||
{%- endif -%} | ||
{%- endcase %} | ||
rustflags = [ | ||
"-C", "linker=flip-link", | ||
"-C", "link-arg=--nmagic", | ||
"-C", "link-arg=-Tlink.x", | ||
"-C", "link-arg=-Tdefmt.x", | ||
|
||
# Code-size optimizations. | ||
# trap unreachable can save a lot of space, but requires nightly compiler. | ||
# uncomment the next line if you wish to enable it | ||
# "-Z", "trap-unreachable=no", | ||
"-C", "inline-threshold=5", | ||
"-C", "no-vectorize-loops", | ||
] | ||
|
||
[build] | ||
target = "thumbv6m-none-eabi" | ||
|
||
[env] | ||
DEFMT_LOG = "debug" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters