Browse Source

Forgot to add Windows loader script.

simple
Jacob Alexander 10 years ago
parent
commit
4e805a21fb
1 changed files with 17 additions and 0 deletions
  1. 17
    0
      LoadFile/winload

+ 17
- 0
LoadFile/winload View File

@@ -0,0 +1,17 @@
#!/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
cmake -G "Unix Makefiles" @CMAKE_SOURCE_DIR@/LoadFile
make
cd -
fi

#| Loads the hex file onto the teensy
teensy-loader-cli/teensy-loader-cli -mmcu=@MCU@ -w @TARGET_HEX@

exit 0