summaryrefslogtreecommitdiffstats
path: root/tmk_core
diff options
context:
space:
mode:
authorDanny Nguyen <danny@keeb.io>2018-01-25 22:36:01 +0100
committerJack Humbert <jack.humb@gmail.com>2018-02-08 21:15:12 +0100
commit361810dca80b31b2ba236df8fdea48b89fedfd4d (patch)
tree33f811b194eb605169584d1deb2c590fc84ceb2d /tmk_core
parent53ff8a31b61952d9675558149d927f7942071df9 (diff)
downloadqmk_firmware-361810dca80b31b2ba236df8fdea48b89fedfd4d.tar.gz
qmk_firmware-361810dca80b31b2ba236df8fdea48b89fedfd4d.tar.xz
Only search through newly detected devices and discard ones that disappeared
Diffstat (limited to 'tmk_core')
-rw-r--r--tmk_core/avr.mk5
1 files changed, 3 insertions, 2 deletions
diff --git a/tmk_core/avr.mk b/tmk_core/avr.mk
index 24722736e..e11ba2e23 100644
--- a/tmk_core/avr.mk
+++ b/tmk_core/avr.mk
@@ -175,10 +175,11 @@ avrdude: $(BUILD_DIR)/$(TARGET).hex check-size
ls /dev/tty* > /tmp/1; \
echo -e "Detecting USB port, reset your controller now.\c"; \
while [ -z $$USB ]; do \
- sleep 1; \
echo -e ".\c"; \
+ sleep 0.5; \
ls /dev/tty* > /tmp/2; \
- USB=`diff /tmp/1 /tmp/2 | grep -o '/dev/tty.*'`; \
+ USB=`comm -13 /tmp/1 /tmp/2 | grep -o '/dev/tty.*'`; \
+ mv /tmp/2 /tmp/1; \
done; \
echo ""; \
echo "Detected controller on USB port at $$USB"; \