Skip to content

Commit

Permalink
Add missing aliases
Browse files Browse the repository at this point in the history
  • Loading branch information
gdobato committed Jun 4, 2024
1 parent 8c24a4e commit d178178
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .cargo/config.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,19 @@ be = "build --example"
ee = "embed --example"
oe = "objcopy --example"

# Aliases
blinky = "be blinky"
blinky-probe = "ee blinky"
blinky-bin = "oe blinky --release -- -O binary target/thumbv7em-none-eabihf/release/examples/blinky.bin"

usb_echo = "be usb_echo"
usb_echo-probe = "ee usb_echo"
usb_echo-bin = "oe usb_echo --release -- -O binary target/thumbv7em-none-eabihf/release/examples/usb_echo.bin"

usb_led_ctrl = "be usb_led_ctrl"
usb_led_ctrl-probe = "ee usb_led_ctrl"
usb_led_ctrl-bin = "oe usb_led_ctrl --release -- -O binary target/thumbv7em-none-eabihf/release/examples/usb_led_ctrl.bin"

[build]
target = "thumbv7em-none-eabihf" # Cortex-M4F and Cortex-M7F (with FPU)

Expand Down

0 comments on commit d178178

Please sign in to comment.