Skip to content

Commit 5c0e876

Browse files
authored
Remove more RESET keycode references (qmk#18252)
1 parent 5d932e2 commit 5c0e876

File tree

58 files changed

+59
-72
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

58 files changed

+59
-72
lines changed

keyboards/ai/readme.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,4 +31,4 @@ Enter the bootloader in 3 ways:
3131

3232
- **Bootmagic reset**: Hold down the key at (0,0) in the matrix (usually the top left key or Escape) and plug in the keyboard
3333
- **Physical reset button**: Briefly press the button on the back of the PCB - some may have pads you must short instead
34-
- **Keycode in layout**: Press the key mapped to `RESET` if it is available
34+
- **Keycode in layout**: Press the key mapped to `QK_BOOT` if it is available

keyboards/aidansmithdotdev/fine40/readme.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,4 +24,4 @@ Enter the bootloader in 3 ways:
2424

2525
* **Bootmagic reset**: Hold down the key at (0,0) in the matrix (top left key) and plug in the keyboard
2626
* **Physical reset button**: Briefly press the button on the back of the PCB - some may have pads you must short instead
27-
* **Keycode in layout**: Press the key mapped to `RESET` if it is available
27+
* **Keycode in layout**: Press the key mapped to `QK_BOOT` if it is available

keyboards/at_at/660m/config.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
1717

1818
#pragma once
1919

20-
/* Ensure we jump to bootloader if the RESET keycode was pressed */
20+
/* Ensure we jump to bootloader if the QK_BOOT keycode was pressed */
2121
#define EARLY_INIT_PERFORM_BOOTLOADER_JUMP TRUE
2222

2323
/* LSE clock */

keyboards/boardrun/bizarre/readme.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,6 @@ Flashing example for this keyboard:
1818

1919
make boardrun/bizarre:default:flash
2020

21-
The board may be reset into bootloader mode via either the reset button (on the bottom of the PCB) or a configured RESET shortcut (which may vary depending on when the PCB was flashed).
21+
The board may be reset into bootloader mode via either the reset button (on the bottom of the PCB) or a configured `QK_BOOT` shortcut (which may vary depending on when the PCB was flashed).
2222

2323
See the [build environment setup](https://docs.qmk.fm/#/getting_started_build_tools) and the [make instructions](https://docs.qmk.fm/#/getting_started_make_guide) for more information. Brand new to QMK? Start with our [Complete Newbs Guide](https://docs.qmk.fm/#/newbs).

keyboards/boardrun/classic/readme.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,6 @@ Flashing example for this keyboard:
1818

1919
make boardrun/classic:default:flash
2020

21-
The board may be reset into bootloader mode via either the reset button (on the bottom of the PCB) or a configured RESET shortcut (which may vary depending on when the PCB was flashed).
21+
The board may be reset into bootloader mode via either the reset button (on the bottom of the PCB) or a configured `QK_BOOT` shortcut (which may vary depending on when the PCB was flashed).
2222

2323
See the [build environment setup](https://docs.qmk.fm/#/getting_started_build_tools) and the [make instructions](https://docs.qmk.fm/#/getting_started_make_guide) for more information. Brand new to QMK? Start with our [Complete Newbs Guide](https://docs.qmk.fm/#/newbs).

keyboards/cannonkeys/malicious_ergo/readme.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,6 @@ Enter the bootloader in 3 ways:
1313

1414
* **Bootmagic reset**: Hold down the key at (0,0) in the matrix (usually the top left key or Escape) and plug in the keyboard
1515
* **Physical reset button**: Toggle the switch on the back of the pcb to "0" and briefly press the button on the back of the PCB
16-
* **Keycode in layout**: Press the key mapped to `RESET` if it is available
16+
* **Keycode in layout**: Press the key mapped to `QK_BOOT` if it is available
1717

1818
See the [build environment setup](https://docs.qmk.fm/#/getting_started_build_tools) and the [make instructions](https://docs.qmk.fm/#/getting_started_make_guide) for more information. Brand new to QMK? Start with our [Complete Newbs Guide](https://docs.qmk.fm/#/newbs).

keyboards/cannonkeys/nearfield/readme.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,6 @@ Enter the bootloader in 3 ways:
2626

2727
* **Bootmagic reset**: Hold down the top left key and plug in the keyboard
2828
* **Physical reset button**: Briefly press the button on the back of the PCB
29-
* **Keycode in layout**: Press the key mapped to `RESET` if it is available
29+
* **Keycode in layout**: Press the key mapped to `QK_BOOT` if it is available
3030

3131
See the [build environment setup](https://docs.qmk.fm/#/getting_started_build_tools) and the [make instructions](https://docs.qmk.fm/#/getting_started_make_guide) for more information. Brand new to QMK? Start with our [Complete Newbs Guide](https://docs.qmk.fm/#/newbs).

keyboards/cannonkeys/satisfaction75/config.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
1717

1818
#pragma once
1919

20-
/* Ensure we jump to bootloader if the RESET keycode was pressed */
20+
/* Ensure we jump to bootloader if the QK_BOOT keycode was pressed */
2121
#define EARLY_INIT_PERFORM_BOOTLOADER_JUMP TRUE
2222

2323
/* LSE clock */

keyboards/capsunlocked/cu75/cu75.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ bool process_record_kb(uint16_t keycode, keyrecord_t* record)
9191
if (click_toggle && record->event.pressed){
9292
click(click_hz, click_time);
9393
}
94-
if (keycode == RESET) {
94+
if (keycode == QK_BOOT) {
9595
reset_keyboard_kb();
9696
} else {
9797
}

keyboards/carbo65/config.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
3232
/* Debounce reduces chatter (unintended double-presses) - set 0 if debouncing is not needed */
3333
#define DEBOUNCE 5
3434

35-
/* Ensure we jump to bootloader if the RESET keycode was pressed */
35+
/* Ensure we jump to bootloader if the QK_BOOT keycode was pressed */
3636
#define EARLY_INIT_PERFORM_BOOTLOADER_JUMP TRUE
3737

3838
/* Indicator LEDs */

keyboards/clueboard/66/rev4/mine/keymap.c

-13
This file was deleted.

keyboards/emery65/config.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
3232
/* Debounce reduces chatter (unintended double-presses) - set 0 if debouncing is not needed */
3333
#define DEBOUNCE 5
3434

35-
/* Ensure we jump to bootloader if the RESET keycode was pressed */
35+
/* Ensure we jump to bootloader if the QK_BOOT keycode was pressed */
3636
#define EARLY_INIT_PERFORM_BOOTLOADER_JUMP TRUE
3737

3838
/* Indicator LEDs */

keyboards/feker/ik75/readme.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,4 +22,4 @@ Enter the bootloader in 3 ways:
2222

2323
* **Bootmagic reset**: Hold down the key at (0,0) in the matrix (Esc key) and plug in the keyboard
2424
* **Physical reset button**: Briefly press the button on the back of the PCB
25-
* **Keycode in layout**: Press the key mapped to RESET if it is available
25+
* **Keycode in layout**: Press the key mapped to `QK_BOOT` if it is available

keyboards/fjlabs/avalon/readme.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,4 @@ Enter the bootloader in 3 ways:
1616

1717
* **Bootmagic reset**: Hold down the key at (0,0) in the matrix (usually the top left key or Escape) and plug in the keyboard
1818
* **Physical reset button**: Briefly press the button on the back of the PCB - some may have pads you must short instead
19-
* **Keycode in layout**: Press the key mapped to `RESET` if it is available
19+
* **Keycode in layout**: Press the key mapped to `QK_BOOT` if it is available

keyboards/foostan/cornelius/readme.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,6 @@ Flashing example for this keyboard:
1616

1717
make foostan/cornelius:default:flash
1818

19-
The board reset into bootloader mode via either the reset button (on the back of the PCB) or a configured RESET shortcut (which may vary depending on when the PCB was flashed).
19+
The board reset into bootloader mode via either the reset button (on the back of the PCB) or a configured `QK_BOOT` shortcut (which may vary depending on when the PCB was flashed).
2020

2121
See the [build environment setup](https://docs.qmk.fm/#/getting_started_build_tools) and the [make instructions](https://docs.qmk.fm/#/getting_started_make_guide) for more information. Brand new to QMK? Start with our [Complete Newbs Guide](https://docs.qmk.fm/#/newbs).

keyboards/hand88/config.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
3232
/* Debounce reduces chatter (unintended double-presses) - set 0 if debouncing is not needed */
3333
#define DEBOUNCE 5
3434

35-
/* Ensure we jump to bootloader if the RESET keycode was pressed */
35+
/* Ensure we jump to bootloader if the QK_BOOT keycode was pressed */
3636
#define EARLY_INIT_PERFORM_BOOTLOADER_JUMP TRUE
3737

3838
/* Indicator LEDs */

keyboards/handwired/cyberstar/config.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
3232
/* Debounce reduces chatter (unintended double-presses) - set 0 if debouncing is not needed */
3333
#define DEBOUNCE 5
3434

35-
/* Ensure we jump to bootloader if the RESET keycode was pressed */
35+
/* Ensure we jump to bootloader if the QK_BOOT keycode was pressed */
3636
#define EARLY_INIT_PERFORM_BOOTLOADER_JUMP TRUE
3737

3838
/* RGB Light */

keyboards/handwired/dactyl/readme.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ To flash the firmware:
2121
- Load the .hex file into it.
2222

2323
- Put the Teensy in firmware-loading mode:
24-
* If your current layout has a RESET key, press it.
24+
* If your current layout has a `QK_BOOT` key, press it.
2525
* If you lack a RESET key, press the reset button on the Teensy board itself.
2626

2727
- Click the button in the Teensy app to download the firmware.
@@ -35,5 +35,5 @@ To flash with ´teensy-loader-cli´:
3535
- If you like, you can do both at once: `make handwired/dactyl:<keymapname>:teensy`
3636

3737
- Put the Teensy in firmware-loading mode:
38-
* If your current layout has a RESET key, press it.
38+
* If your current layout has a `QK_BOOT` key, press it.
3939
* If you lack a RESET key, press the reset button on the Teensy board itself.

keyboards/idobao/id80/v1/readme.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,4 +24,4 @@ Enter the bootloader in 3 ways:
2424

2525
* **Bootmagic reset**: Hold down the Escape key and plug in the keyboard
2626
* **Physical reset button**: Briefly press the button on the back of the PCB
27-
* **Keycode in layout**: Press the key mapped to `RESET` if it is available
27+
* **Keycode in layout**: Press the key mapped to `QK_BOOT` if it is available

keyboards/idobao/id80/v2/readme.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,4 +38,4 @@ Enter the bootloader in 3 ways:
3838

3939
* **Bootmagic reset**: Hold down the Escape key and plug in the keyboard
4040
* **Physical reset button**: Briefly press the button on the back of the PCB
41-
* **Keycode in layout**: Press the key mapped to `RESET` if it is available *(default is [Fn]+[Esc])*
41+
* **Keycode in layout**: Press the key mapped to `QK_BOOT` if it is available *(default is [Fn]+[Esc])*

keyboards/jacky_studio/s7_elephant/readme.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,6 @@ Make example for this keyboard (after setting up your build environment):
1515
make jacky_studio/s7_elephant/rev1:default # 2018 run
1616
make jacky_studio/s7_elephant/rev2:default # 2019 run
1717

18-
To enter the bootloader, either short the pins on the PCB or the RESET button on the FN layer.
18+
To enter the bootloader, either short the pins on the PCB or the `QK_BOOT` key on the FN layer.
1919

2020
See the [build environment setup](https://docs.qmk.fm/#/getting_started_build_tools) and the [make instructions](https://docs.qmk.fm/#/getting_started_make_guide) for more information. Brand new to QMK? Start with our [Complete Newbs Guide](https://docs.qmk.fm/#/newbs).

keyboards/jacky_studio/s7_elephant/rev1/readme.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,6 @@ Make example for this keyboard (after setting up your build environment):
1212

1313
make s7_elephant/rev1:default
1414

15-
To enter the bootloader, either short the pins on the PCB or the RESET button on the FN layer.
15+
To enter the bootloader, either short the pins on the PCB or the `QK_BOOT` key on the FN layer.
1616

1717
See the [build environment setup](https://docs.qmk.fm/#/getting_started_build_tools) and the [make instructions](https://docs.qmk.fm/#/getting_started_make_guide) for more information. Brand new to QMK? Start with our [Complete Newbs Guide](https://docs.qmk.fm/#/newbs).

keyboards/kegen/gboy/readme.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,4 +25,4 @@ Enter the bootloader in 3 ways:
2525

2626
* **Bootmagic reset**: Hold down the key at (0,0) in the matrix (usually the top left key or Escape) and plug in the keyboard
2727
* **Physical reset button**: Briefly press the button on the back of the PCB - some may have pads you must short instead
28-
* **Keycode in layout**: Press the key mapped to `RESET` if it is available
28+
* **Keycode in layout**: Press the key mapped to `QK_BOOT` if it is available

keyboards/lazydesigners/bolt/readme.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,6 @@ Flashing example for this keyboard:
1616

1717
make lazydesigners/bolt:default:flash
1818

19-
**Reset Key:** To enter the bootloader, either push the RESET button on the PCB or the RESET button on the FN layer.
19+
**Reset Key:** To enter the bootloader, either push the RESET button on the PCB or the `QK_BOOT` key on the FN layer.
2020

2121
See the [build environment setup](https://docs.qmk.fm/#/getting_started_build_tools) and the [make instructions](https://docs.qmk.fm/#/getting_started_make_guide) for more information. Brand new to QMK? Start with our [Complete Newbs Guide](https://docs.qmk.fm/#/newbs).

keyboards/lazydesigners/cassette8/readme.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,6 @@ Flashing example for this keyboard:
1616

1717
make lazydesigners/cassette8:default:flash
1818

19-
**Reset Key:** To enter the bootloader, either push the RESET button on the PCB or the RESET button on the FN layer.
19+
**Reset Key:** To enter the bootloader, either push the RESET button on the PCB or the `QK_BOOT` key on the FN layer.
2020

2121
See the [build environment setup](https://docs.qmk.fm/#/getting_started_build_tools) and the [make instructions](https://docs.qmk.fm/#/getting_started_make_guide) for more information. Brand new to QMK? Start with our [Complete Newbs Guide](https://docs.qmk.fm/#/newbs).

keyboards/lazydesigners/dimple/readme.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,6 @@ Make example for this keyboard (after setting up your build environment):
2121
make lazydesigners/dimple/staggered/rev2:default
2222
make lazydesigners/dimple/ortho:default
2323

24-
To enter the bootloader, either short the pins on the PCB or the RESET button on the FN layer.
24+
To enter the bootloader, either short the pins on the PCB or the `QK_BOOT` key on the FN layer.
2525

2626
See the [build environment setup](https://docs.qmk.fm/#/getting_started_build_tools) and the [make instructions](https://docs.qmk.fm/#/getting_started_make_guide) for more information. Brand new to QMK? Start with our [Complete Newbs Guide](https://docs.qmk.fm/#/newbs).

keyboards/lazydesigners/dimpleplus/readme.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,6 @@ Flashing example for this keyboard:
1414

1515
make lazydesigners/dimpleplus:default:flash
1616

17-
**Reset Key:** To enter the bootloader, either push the RESET button on the PCB or the RESET button on the FN layer.
17+
**Reset Key:** To enter the bootloader, either push the RESET button on the PCB or the `QK_BOOT` key on the FN layer.
1818

1919
See the [build environment setup](https://docs.qmk.fm/#/getting_started_build_tools) and the [make instructions](https://docs.qmk.fm/#/getting_started_make_guide) for more information. Brand new to QMK? Start with our [Complete Newbs Guide](https://docs.qmk.fm/#/newbs).

keyboards/lazydesigners/the40/readme.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,6 @@ Flashing example for this keyboard:
2121

2222
make lazydesigners/the40:default:flash
2323

24-
**Reset Key:** To enter the bootloader, either push the RESET button on the PCB or the RESET button on the FN layer.
24+
**Reset Key:** To enter the bootloader, either push the RESET button on the PCB or the `QK_BOOT` key on the FN layer.
2525

2626
See the [build environment setup](https://docs.qmk.fm/#/getting_started_build_tools) and the [make instructions](https://docs.qmk.fm/#/getting_started_make_guide) for more information. Brand new to QMK? Start with our [Complete Newbs Guide](https://docs.qmk.fm/#/newbs).

keyboards/lazydesigners/the50/readme.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,6 @@ Make example for this keyboard (after setting up your build environment):
1212

1313
make lazydesigners/the50:default:dfu
1414

15-
To enter the bootloader, either short the pins on the PCB or the RESET button on the FN layer.
15+
To enter the bootloader, either short the pins on the PCB or the `QK_BOOT` key on the FN layer.
1616

1717
See the [build environment setup](https://docs.qmk.fm/#/getting_started_build_tools) and the [make instructions](https://docs.qmk.fm/#/getting_started_make_guide) for more information. Brand new to QMK? Start with our [Complete Newbs Guide](https://docs.qmk.fm/#/newbs).

keyboards/lazydesigners/the60/rev2/readme.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,6 @@
1616

1717
make lazydesigners/the60/rev2:default:flash
1818

19-
**Reset Key:** To enter the bootloader, either push the RESET button on the PCB or the RESET button on the FN layer.
19+
**Reset Key:** To enter the bootloader, either push the RESET button on the PCB or the `QK_BOOT` key on the FN layer.
2020

2121
See the [build environment setup](https://docs.qmk.fm/#/getting_started_build_tools) and the [make instructions](https://docs.qmk.fm/#/getting_started_make_guide) for more information. Brand new to QMK? Start with our [Complete Newbs Guide](https://docs.qmk.fm/#/newbs).

keyboards/lfkeyboards/lfk65_hs/lfk65_hs.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
bool process_record_kb(uint16_t keycode, keyrecord_t* record)
88
{
9-
if (keycode == RESET) {
9+
if (keycode == QK_BOOT) {
1010
reset_keyboard_kb();
1111
} else {
1212
}

keyboards/lfkeyboards/lfk78/lfk78.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ bool process_record_kb(uint16_t keycode, keyrecord_t* record) {
127127
clicking_notes(click_hz, click_time);
128128
}
129129

130-
if (keycode == RESET) {
130+
if (keycode == QK_BOOT) {
131131
reset_keyboard_kb();
132132
}
133133

keyboards/lfkeyboards/lfk87/lfk87.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ bool process_record_kb(uint16_t keycode, keyrecord_t* record)
109109
if (click_toggle && record->event.pressed){
110110
click(click_hz, click_time);
111111
}
112-
if (keycode == RESET) {
112+
if (keycode == QK_BOOT) {
113113
reset_keyboard_kb();
114114
} else {
115115
}

keyboards/lfkeyboards/mini1800/mini1800.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ bool process_record_kb(uint16_t keycode, keyrecord_t* record)
115115
if (click_toggle && record->event.pressed){
116116
click(click_hz, click_time);
117117
}
118-
if (keycode == RESET) {
118+
if (keycode == QK_BOOT) {
119119
reset_keyboard_kb();
120120
} else {
121121
}

keyboards/lfkeyboards/smk65/revb/revb.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ bool process_record_kb(uint16_t keycode, keyrecord_t* record)
7474
if (click_toggle && record->event.pressed){
7575
click(click_hz, click_time);
7676
}
77-
if (keycode == RESET) {
77+
if (keycode == QK_BOOT) {
7878
reset_keyboard_kb();
7979
} else {
8080
}

keyboards/loki65/config.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
3232
/* Debounce reduces chatter (unintended double-presses) - set 0 if debouncing is not needed */
3333
#define DEBOUNCE 5
3434

35-
/* Ensure we jump to bootloader if the RESET keycode was pressed */
35+
/* Ensure we jump to bootloader if the QK_BOOT keycode was pressed */
3636
#define EARLY_INIT_PERFORM_BOOTLOADER_JUMP TRUE
3737

3838
/* Indicator LEDs */

keyboards/mechlovin/zed65/readme.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,4 +22,4 @@ Enter the bootloader in 3 ways:
2222

2323
* **Bootmagic reset**: Hold down the key at (0,0) in the matrix (usually the top left key or Escape) and plug in the keyboard
2424
* **Physical reset button**: Briefly press the button on the back of the PCB - some may have pads you must short instead
25-
* **Keycode in layout**: Press the key mapped to `RESET` if it is available
25+
* **Keycode in layout**: Press the key mapped to `QK_BOOT` if it is available

keyboards/mechlovin/zed65/retro66/readme.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,4 +24,4 @@ Enter the bootloader in 3 ways:
2424

2525
* **Bootmagic reset**: Hold down the key at (0,0) in the matrix (usually the top left key or Escape) and plug in the keyboard
2626
* **Physical reset button**: Briefly press the button on the back of the PCB - some may have pads you must short instead
27-
* **Keycode in layout**: Press the key mapped to `RESET` if it is available
27+
* **Keycode in layout**: Press the key mapped to `QK_BOOT` if it is available

0 commit comments

Comments
 (0)