Archived
1
0
This repo is archived. You can view files and clone it, but cannot push or open issues or pull requests.
controller/LoadFile/load

18 lines
386 B
Plaintext
Raw Normal View History

#!/bin/bash
#| First check to see teensy-loader-cli has been compiled
if [ ! -e teensy-loader-cli/teensy-loader-cli ]; then
# Compile teensy-loader-cli
mkdir -p teensy-loader-cli
cd teensy-loader-cli
2014-04-18 01:49:40 +00:00
cmake -G "Unix Makefiles" @CMAKE_SOURCE_DIR@/LoadFile
make
cd -
fi
#| Loads the hex file onto the teensy
2014-05-27 06:47:47 +00:00
teensy-loader-cli/teensy-loader-cli -mmcu=@MCU@ -w @TARGET_HEX@
exit 0