Merge remote-tracking branch 'origin/develop' into xap

This commit is contained in:
QMK Bot 2022-08-07 09:18:49 +00:00
commit 9d78049b73

View File

@ -139,14 +139,15 @@ __attribute__((weak)) uint8_t pointing_device_handle_buttons(uint8_t buttons, bo
*/ */
__attribute__((weak)) void pointing_device_init(void) { __attribute__((weak)) void pointing_device_init(void) {
#if defined(SPLIT_POINTING_ENABLE) #if defined(SPLIT_POINTING_ENABLE)
if (!(POINTING_DEVICE_THIS_SIDE)) { if ((POINTING_DEVICE_THIS_SIDE))
return;
}
#endif #endif
{
pointing_device_driver.init(); pointing_device_driver.init();
#ifdef POINTING_DEVICE_MOTION_PIN #ifdef POINTING_DEVICE_MOTION_PIN
setPinInputHigh(POINTING_DEVICE_MOTION_PIN); setPinInputHigh(POINTING_DEVICE_MOTION_PIN);
#endif #endif
}
pointing_device_init_kb(); pointing_device_init_kb();
pointing_device_init_user(); pointing_device_init_user();
} }