diff options
author | Ryan <fauxpark@gmail.com> | 2021-07-03 16:34:22 +1000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-03 16:34:22 +1000 |
commit | 06e0643541493220fb7413e33f3fc6972a9384b8 (patch) | |
tree | 2cef1e856ca3bbaf49bfe472333914dd9e49c0ec /tmk_core/avr.mk | |
parent | 2ce8d264184e053d67e083ab86a2613a4a6a128e (diff) |
Add "Ctrl+C to cancel" to "waiting for bootloader" messages (#13424)
Diffstat (limited to 'tmk_core/avr.mk')
-rw-r--r-- | tmk_core/avr.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tmk_core/avr.mk b/tmk_core/avr.mk index eb934ffe60..690154535b 100644 --- a/tmk_core/avr.mk +++ b/tmk_core/avr.mk @@ -173,7 +173,7 @@ define EXEC_AVRDUDE fi; \ }; \ USB= ;\ - printf "Detecting USB port, reset your controller now."; \ + printf "Waiting for USB serial port - reset your controller now (Ctrl+C to cancel)"; \ TMP1=`mktemp`; \ TMP2=`mktemp`; \ list_devices > $$TMP1; \ |