]> git.donarmstrong.com Git - qmk_firmware.git/commitdiff
Fixed minor typo in bootloader code
authorDrashna Jael're <drashna@live.com>
Wed, 29 Nov 2017 17:49:33 +0000 (09:49 -0800)
committerJack Humbert <jack.humb@gmail.com>
Wed, 29 Nov 2017 18:01:06 +0000 (13:01 -0500)
docs/feature_userspace.md
users/drashna/template.c

index f1a4efdd89f591ce78df8ec5ff890928450ec30e..bbb035109a5920ed4a500f2840356ffeaf84c011 100644 (file)
@@ -76,7 +76,7 @@ bool process_record_user(uint16_t keycode, keyrecord_t *record) {
       SEND_STRING("make " QMK_KEYBOARD ":" QMK_KEYMAP
 #if  (defined(BOOTLOADER_DFU) || defined(BOOTLOADER_LUFA_DFU) || defined(BOOTLOADER_QMK_DFU))
        ":dfu "
-#elif defined(BOOTLOADER_HALFKEY)
+#elif defined(BOOTLOADER_HALFKAY)
       ":teensy "
 #elif defined(BOOTLOADER_CATERINA)
        ":avrdude "
@@ -92,5 +92,5 @@ bool process_record_user(uint16_t keycode, keyrecord_t *record) {
 
 This will add a new `KC_MAKE`  keycode that can be used in any of your keymaps.  And this keycode will output `make <keyboard>:<keymap">`, making frequent compiling easier.  And this will work with any keyboard and any keymap as it will output the current boards info, so that you don't have to type this out every time. 
 
-Additionally, this should flash the newly compiled firmware automatically, using the correct utility, based on the bootloader settings (or default to just generating the HEX file). However, it should be noted that this may not work on all systems (AVRDUDE doesn't work on WSL, namely).
+Additionally, this should flash the newly compiled firmware automatically, using the correct utility, based on the bootloader settings (or default to just generating the HEX file). However, it should be noted that this may not work on all systems. AVRDUDE doesn't work on WSL, namely (and will dump the HEX in the ".build" folder instead).
 
index 577a2ea36a2d4bf6c895a76da51ad508877ddf04..37f3233dfc3648c9e4bc3f372885d675ab1597c6 100644 (file)
@@ -45,7 +45,7 @@ bool process_record_user(uint16_t keycode, keyrecord_t *record) {
       SEND_STRING("make " QMK_KEYBOARD ":" QMK_KEYMAP
 #if  (defined(BOOTLOADER_DFU) || defined(BOOTLOADER_LUFA_DFU) || defined(BOOTLOADER_QMK_DFU))
         ":dfu"
-#elif defined(BOOTLOADER_HALFKEY)
+#elif defined(BOOTLOADER_HALFKAY)
         ":teensy"
 #elif defined(BOOTLOADER_CATERINA)
         ":avrdude"