diff options
author | Drashna Jaelre <drashna@live.com> | 2019-09-07 16:55:18 -0700 |
---|---|---|
committer | Florian Didron <fdidron@users.noreply.github.com> | 2019-09-26 10:08:39 +0900 |
commit | 200c6bedd191a16ac87ce5b18a785e93b01a7d38 (patch) | |
tree | f7d7305fe968ee7f6850272bcc7b79b57dd632eb /tmk_core/chibios.mk | |
parent | 04923788728d33a27bfa4841d4bd7e67463c4c6c (diff) |
Actually use correct bootloader not found message (#6695)
Diffstat (limited to 'tmk_core/chibios.mk')
-rw-r--r-- | tmk_core/chibios.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tmk_core/chibios.mk b/tmk_core/chibios.mk index 5c757ec899..c25e287071 100644 --- a/tmk_core/chibios.mk +++ b/tmk_core/chibios.mk @@ -236,7 +236,7 @@ qmk: $(BUILD_DIR)/$(TARGET).bin define EXEC_DFU_UTIL until $(DFU_UTIL) -l | grep -q "Found DFU"; do\ - printf "$(MSG_FLASH_BOOTLOADER)" ;\ + printf "$(MSG_BOOTLOADER_NOT_FOUND)" ;\ sleep 5 ;\ done $(DFU_UTIL) $(DFU_ARGS) -D $(BUILD_DIR)/$(TARGET).bin |