Tidy up use of keycode range helpers (#19813)
This commit is contained in:
parent
13af265268
commit
6ceff1367d
4 changed files with 8 additions and 9 deletions
|
@ -323,7 +323,7 @@ void register_mouse(uint8_t mouse_keycode, bool pressed) {
|
|||
#elif defined(POINTING_DEVICE_ENABLE)
|
||||
// if mousekeys isn't enabled, and pointing device is enabled, then
|
||||
// let pointing device do all the heavy lifting, then
|
||||
if IS_MOUSEKEY (mouse_keycode) {
|
||||
if IS_MOUSE_KEYCODE (mouse_keycode) {
|
||||
pointing_device_keycode_handler(mouse_keycode, pressed);
|
||||
}
|
||||
#endif
|
||||
|
@ -895,13 +895,13 @@ __attribute__((weak)) void register_code(uint8_t code) {
|
|||
send_keyboard_report();
|
||||
|
||||
#ifdef EXTRAKEY_ENABLE
|
||||
} else if IS_SYSTEM (code) {
|
||||
} else if IS_SYSTEM_KEYCODE (code) {
|
||||
host_system_send(KEYCODE2SYSTEM(code));
|
||||
} else if IS_CONSUMER (code) {
|
||||
} else if IS_CONSUMER_KEYCODE (code) {
|
||||
host_consumer_send(KEYCODE2CONSUMER(code));
|
||||
#endif
|
||||
|
||||
} else if IS_MOUSEKEY (code) {
|
||||
} else if IS_MOUSE_KEYCODE (code) {
|
||||
register_mouse(code, true);
|
||||
}
|
||||
}
|
||||
|
@ -958,7 +958,7 @@ __attribute__((weak)) void unregister_code(uint8_t code) {
|
|||
host_consumer_send(0);
|
||||
#endif
|
||||
|
||||
} else if IS_MOUSEKEY (code) {
|
||||
} else if IS_MOUSE_KEYCODE (code) {
|
||||
register_mouse(code, false);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue