view LoadFile/winload @ 152:cddbce3da134

Another typo...
author Jacob Alexander <haata@kiibohd.com>
date Sat, 19 Apr 2014 20:17:38 -0700
parents 28ed64f199d3
children
line wrap: on
line source

#!/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" $(cygpath -u @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