From 9a41d1cfa9e98ca23b8f65083bd3e2144e051b2f Mon Sep 17 00:00:00 2001 From: Jesse Vincent Date: Sun, 23 Feb 2020 23:14:04 -0800 Subject: [PATCH] Make avrdude more verbose to help make sure customers can tell whether their keyboards got flashed --- bin/kaleidoscope-builder | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/kaleidoscope-builder b/bin/kaleidoscope-builder index c0cd3903..9801abb8 100755 --- a/bin/kaleidoscope-builder +++ b/bin/kaleidoscope-builder @@ -197,7 +197,7 @@ check_bootloader_port_and_flash () { flash_over_usb () { sleep 1 - ${AVRDUDE} -q -q -C "${AVRDUDE_CONF}" -p"${MCU}" -cavr109 -D -P "${DEVICE_PORT_BOOTLOADER}" -b57600 "-Uflash:w:${HEX_FILE_PATH}:i" + ${AVRDUDE} -C "${AVRDUDE_CONF}" -p"${MCU}" -cavr109 -D -P "${DEVICE_PORT_BOOTLOADER}" -b57600 "-Uflash:w:${HEX_FILE_PATH}:i" 2>&1 } flash_from_bootloader() {