summaryrefslogtreecommitdiffstats
path: root/avrdude
diff options
context:
space:
mode:
Diffstat (limited to 'avrdude')
-rwxr-xr-xavrdude14
1 files changed, 14 insertions, 0 deletions
diff --git a/avrdude b/avrdude
new file mode 100755
index 000000000..293825e44
--- /dev/null
+++ b/avrdude
@@ -0,0 +1,14 @@
+#!/bin/bash
+set -x
+BUILD_DIR=.
+TARGET=lets_split_rev2_adam.hex
+MCU=atmega32u4
+ls /dev/tty* > /tmp/1;
+echo "Reset your Pro Micro now";
+while [[ -z $USB ]]; do
+ echo "."
+ sleep 1;
+ ls /dev/tty* > /tmp/2;
+ USB=`diff /tmp/1 /tmp/2 | grep -o '/dev/tty.*'`;
+done;
+avrdude -p $MCU -c avr109 -P $USB -U flash:w:$BUILD_DIR/$TARGET