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

Lines changed: 1 addition & 1 deletion
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

Lines changed: 1 addition & 1 deletion
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

Lines changed: 1 addition & 1 deletion
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

Lines changed: 1 addition & 1 deletion
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

Lines changed: 1 addition & 1 deletion
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

Lines changed: 1 addition & 1 deletion
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

Lines changed: 1 addition & 1 deletion
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

Lines changed: 1 addition & 1 deletion
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

Lines changed: 1 addition & 1 deletion
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

Lines changed: 1 addition & 1 deletion
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 */

0 commit comments

Comments
 (0)