commit 7bd1d18427dd3a4fd5f72c8a88a022beeb53273b
parent 31e39a9ff49e15db6dc787e996b08708c88a1967
Author: Drashna Jaelre <drashna@live.com>
Date: Mon, 19 Jun 2023 18:55:27 -0700
[Docs] Add note about `ENABLE_COMPILE_KEYCODE` to docs (#21290)
Co-authored-by: Ryan <fauxpark@gmail.com>
Diffstat:
1 file changed, 2 insertions(+), 0 deletions(-)
diff --git a/docs/quantum_keycodes.md b/docs/quantum_keycodes.md
@@ -15,3 +15,5 @@ On this page we have documented keycodes between `0x00FF` and `0xFFFF` which are
|`QK_CLEAR_EEPROM`|`EE_CLR` |Reinitializes the keyboard's EEPROM (persistent memory) |
|`QK_MAKE` | |Sends `qmk compile -kb (keyboard) -km (keymap)`, or `qmk flash` if shift is held. Puts keyboard into bootloader mode if shift & control are held |
|`QK_REBOOT` |`QK_RBT` |Resets the keyboard. Does not load the bootloader |
+
+!> Note: `QK_MAKE` requires `#define ENABLE_COMPILE_KEYCODE` in your config.h to function.