2015-08-10 20:49:46 +00:00
|
|
|
#!/usr/bin/env bash
|
2015-02-09 23:58:07 +00:00
|
|
|
# Convenience script for loading firmware onto a teensy type device
|
|
|
|
# By default, initiates teensy-load-cli
|
2014-04-13 03:52:32 +00:00
|
|
|
|
2015-02-09 23:58:07 +00:00
|
|
|
SERIAL_PORT=""
|
|
|
|
AUTO_SCREEN_SESSION=""
|
|
|
|
PROG_NAME=$(basename $0)
|
|
|
|
|
|
|
|
# Parse all the command line arguments
|
|
|
|
while (( "$#" >= "1" )); do
|
|
|
|
# Scan each argument
|
|
|
|
key="$1"
|
|
|
|
case $key in
|
|
|
|
-a|--autoscreen)
|
|
|
|
AUTO_SCREEN_SESSION="$2"
|
|
|
|
shift
|
|
|
|
;;
|
|
|
|
-f|--fastload)
|
|
|
|
SERIAL_PORT="$2"
|
|
|
|
shift
|
|
|
|
;;
|
|
|
|
-h|--help)
|
|
|
|
echo "Usage: $PROG_NAME [options...]"
|
|
|
|
echo ""
|
|
|
|
echo "Loads the most recent built firmware (@TARGET_BIN@) to the device."
|
|
|
|
echo " (load.teensy)"
|
|
|
|
echo ""
|
|
|
|
echo "Arguments:"
|
|
|
|
echo " -a, --autoscreen SERIAL_PORT Use screen on the specified serial port after loading."
|
|
|
|
echo " e.g. /dev/ttyACM0"
|
|
|
|
echo " -f, --fastload SERIAL_PORT Send the reload command to the debug terminal."
|
|
|
|
echo " e.g. /dev/ttyACM0"
|
|
|
|
echo " NOTE: May not work due to non-functional terminal, or disable remote flashing"
|
|
|
|
echo " -h, --help This message."
|
|
|
|
exit 1
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
echo "INVALID ARG: '$1'"
|
|
|
|
exit 2
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
|
|
|
|
# Shift to the next argument
|
|
|
|
shift
|
|
|
|
done
|
|
|
|
|
|
|
|
# First check to see teensy-loader-cli has been compiled
|
2014-04-13 03:52:32 +00:00
|
|
|
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
|
2015-02-13 03:42:01 +00:00
|
|
|
make || exit 3
|
2014-04-13 06:10:39 +00:00
|
|
|
cd -
|
2014-04-13 03:52:32 +00:00
|
|
|
fi
|
|
|
|
|
2015-02-09 23:58:07 +00:00
|
|
|
# If a SERIAL_PORT was specified set the uC into reflash mode
|
|
|
|
# XXX May not be successful if uC is not in a good state (or does not allow remote flashing)
|
|
|
|
if [[ "$SERIAL_PORT" != "" ]] && [[ -e "$SERIAL_PORT" ]]; then
|
|
|
|
echo "NOTE: This may fail if the uC is in a bad state or does not support remote flashing"
|
|
|
|
printf "reload\r" > $SERIAL_PORT
|
|
|
|
sleep 1
|
|
|
|
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@
|
2015-02-09 23:58:07 +00:00
|
|
|
EXIT_STATUS=$?
|
|
|
|
|
|
|
|
# Load Screen Session if specified
|
|
|
|
if (( "$EXIT_STATUS" == "0" )) && [[ "$AUTO_SCREEN_SESSION" != "" ]]; then
|
2015-02-13 03:42:01 +00:00
|
|
|
if type screen &>/dev/null; then
|
2015-03-15 23:58:01 +00:00
|
|
|
sleep 2
|
2015-02-13 03:42:01 +00:00
|
|
|
screen $AUTO_SCREEN_SESSION
|
|
|
|
else
|
|
|
|
echo "screen is not installed"
|
|
|
|
exit 3
|
|
|
|
fi
|
2015-02-09 23:58:07 +00:00
|
|
|
fi
|
2014-04-13 03:52:32 +00:00
|
|
|
|
2015-02-09 23:58:07 +00:00
|
|
|
exit $EXIT_STATUS
|
2014-04-13 03:52:32 +00:00
|
|
|
|