Move KC_MISSION_CONTROL
/KC_LAUNCHPAD
keycodes to core (#19884)
This commit is contained in:
@@ -22,13 +22,6 @@
|
||||
|
||||
// clang-format off
|
||||
|
||||
enum custom_keycodes {
|
||||
KC_MISSION_CONTROL = USER00,
|
||||
KC_LAUNCHPAD,
|
||||
};
|
||||
|
||||
#define KC_MCTL KC_MISSION_CONTROL
|
||||
#define KC_LPAD KC_LAUNCHPAD
|
||||
#define TG_NKRO MAGIC_TOGGLE_NKRO
|
||||
|
||||
const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
|
||||
@@ -72,24 +65,3 @@ void matrix_init_user(void) {
|
||||
rgb_matrix_init_user();
|
||||
#endif
|
||||
}
|
||||
|
||||
bool process_record_user(uint16_t keycode, keyrecord_t *record) {
|
||||
switch (keycode) {
|
||||
case KC_MISSION_CONTROL:
|
||||
if (record->event.pressed) {
|
||||
host_consumer_send(0x29F);
|
||||
} else {
|
||||
host_consumer_send(0);
|
||||
}
|
||||
return false; // Skip all further processing of this key
|
||||
case KC_LAUNCHPAD:
|
||||
if (record->event.pressed) {
|
||||
host_consumer_send(0x2A0);
|
||||
} else {
|
||||
host_consumer_send(0);
|
||||
}
|
||||
return false; // Skip all further processing of this key
|
||||
default:
|
||||
return true; // Process all other keycodes normally
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user