From 8023ade4c1bf82d5d6354b8db23a40306d2f2a8d Mon Sep 17 00:00:00 2001 From: Drashna Jael're Date: Sun, 18 Jun 2023 15:07:03 -0700 Subject: [PATCH 1/2] [Docs] Add note about to docs --- docs/keycodes.md | 2 ++ docs/quantum_keycodes.md | 2 ++ 2 files changed, 4 insertions(+) diff --git a/docs/keycodes.md b/docs/keycodes.md index e5b6246af794..741386e87cf7 100644 --- a/docs/keycodes.md +++ b/docs/keycodes.md @@ -231,6 +231,8 @@ See also: [Quantum Keycodes](quantum_keycodes.md#qmk-keycodes) |`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. + ## Audio Keys :id=audio-keys See also: [Audio](feature_audio.md) diff --git a/docs/quantum_keycodes.md b/docs/quantum_keycodes.md index bc68cbc92212..a41681ac85f9 100644 --- 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. From d344d05cf16d179021a1338b306beda421792a1e Mon Sep 17 00:00:00 2001 From: Drashna Jaelre Date: Mon, 19 Jun 2023 18:43:53 -0700 Subject: [PATCH 2/2] Update docs/keycodes.md Co-authored-by: Ryan --- docs/keycodes.md | 2 -- 1 file changed, 2 deletions(-) diff --git a/docs/keycodes.md b/docs/keycodes.md index 741386e87cf7..e5b6246af794 100644 --- a/docs/keycodes.md +++ b/docs/keycodes.md @@ -231,8 +231,6 @@ See also: [Quantum Keycodes](quantum_keycodes.md#qmk-keycodes) |`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. - ## Audio Keys :id=audio-keys See also: [Audio](feature_audio.md)