-
Notifications
You must be signed in to change notification settings - Fork 268
Expand file tree
/
Copy pathload.teensy
More file actions
executable file
·87 lines (78 loc) · 2.3 KB
/
Copy pathload.teensy
File metadata and controls
executable file
·87 lines (78 loc) · 2.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
#!/usr/bin/env bash
# Convenience script for loading firmware onto a teensy type device
# By default, initiates teensy-load-cli
SERIAL_PORT=""
AUTO_SCREEN_SESSION=""
NOSCREEN=0
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
;;
-n|--noscreen)
NOSCREEN=1
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 " -n, --noscreen Don't automatically connect to the serial port"
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
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 || exit 3
cd -
fi
# 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
teensy-loader-cli/teensy-loader-cli -mmcu=@MCU@ -w @TARGET_HEX@
EXIT_STATUS=$?
# Load Screen Session if specified
if (( "$EXIT_STATUS" == "0" )) && [[ "$AUTO_SCREEN_SESSION" != "" ]] && [[ $NOSCREEN -ne 1 ]]; then
if type screen &>/dev/null; then
sleep 2
screen $AUTO_SCREEN_SESSION
else
echo "screen is not installed"
exit 3
fi
fi
exit $EXIT_STATUS