9 lines
112 B
Text
9 lines
112 B
Text
|
|
#!/bin/bash
|
||
|
|
|
||
|
|
#| Loads the hex file onto the teensy
|
||
|
|
|
||
|
|
sudo teensy-loader-cli -mmcu=@MCU@ -w @TARGET_HEX@
|
||
|
|
|
||
|
|
exit 0
|
||
|
|
|