summaryrefslogtreecommitdiffstats
path: root/avrdude
diff options
context:
space:
mode:
authorAdam Bell <agbell@gmail.com>2017-06-03 14:32:02 -0400
committerAdam Bell <agbell@gmail.com>2017-06-03 14:32:02 -0400
commit0db6ac46aa52ff6b09425c0085febeae0c91c0b4 (patch)
treed631b404535c35395670fc47eddb6352b131822f /avrdude
parent4ab61344f5fa3448639fb464faefb577b0442bfa (diff)
remove build stuff
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 293825e448..0000000000
--- a/avrdude
+++ /dev/null
@@ -1,14 +0,0 @@
-#!/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