diff options
| author | Drashna Jaelre | 2019-09-08 01:55:18 +0200 |
|---|---|---|
| committer | fauxpark | 2019-09-08 01:55:18 +0200 |
| commit | 02f77e7215a0ee9bb4ba1054dbdec75a4843bb99 (patch) | |
| tree | da2aa27fe20789764ceecad4d57652b6a192486b /tmk_core/chibios.mk | |
| parent | 44fd317a8793753b2af1bab8e4a4700024a768a5 (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 |