qmk_firmware

QMK firmware for my keyboards (Corne, Sweep Ferris) and trackball (Ploopy Adept)
Log | Files | Refs | Submodules | LICENSE

commit 60ac8598525312f089382d94b18996024f8df9c8
parent 45091b04736d07a4d751422cc302901ba52e1f58
Author: Christopher Hoage <iam@chrishoage.com>
Date:   Thu,  1 May 2025 18:52:36 -0700

Fix Spleeb compile when pointing device is enabled (#25016)


Diffstat:
Akeyboards/spleeb/rules.mk | 1+
Mkeyboards/spleeb/spleeb.c | 4++++
2 files changed, 5 insertions(+), 0 deletions(-)

diff --git a/keyboards/spleeb/rules.mk b/keyboards/spleeb/rules.mk @@ -0,0 +1 @@ +POINTING_DEVICE_DRIVER = cirque_pinnacle_i2c diff --git a/keyboards/spleeb/spleeb.c b/keyboards/spleeb/spleeb.c @@ -8,6 +8,10 @@ # include "print.h" #endif // CONSOLE_ENABLE +#ifdef POINTING_DEVICE_ENABLE +# include "drivers/sensors/cirque_pinnacle_gestures.h" +#endif // POINTING_DEVICE_ENABLE + #if defined(POINTING_DEVICE_ENABLE) || defined(SPLEEB_ENCODER_MODE_MAP_ENABLE) typedef union { uint16_t raw;