diff --git a/.cargo/config.toml b/.cargo/config.toml index c9e03b8..a677387 100644 --- a/.cargo/config.toml +++ b/.cargo/config.toml @@ -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)