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