aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xavrdude14
-rw-r--r--docker-compose.yml11
2 files changed, 0 insertions, 25 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
diff --git a/docker-compose.yml b/docker-compose.yml
deleted file mode 100644
index 4657e7822..000000000
--- a/docker-compose.yml
+++ /dev/null
@@ -1,11 +0,0 @@
1# specify keyboard / keymap / subproject (if req) and run `docker compose up`
2# will install all deps into a docker container and build firmware, cross platform
3# Only prereq is docker
4qmk:
5 build: .
6 environment:
7 keyboard: lets_split
8 keymap: adam
9 subproject: rev2
10 volumes:
11 - .:/qmk