1
0
Fork 0

Tidy up use of keycode range helpers (#19813)

This commit is contained in:
Joel Challis 2023-02-12 17:09:34 +00:00 committed by GitHub
parent 13af265268
commit 6ceff1367d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 8 additions and 9 deletions

View file

@ -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);
}
}