summaryrefslogtreecommitdiff
path: root/quantum/haptic.c
diff options
context:
space:
mode:
authorjacob-w-gable <82864625+jacob-w-gable@users.noreply.github.com>2023-09-24 21:23:31 -0500
committerGitHub <noreply@github.com>2023-09-25 12:23:31 +1000
commit99290b4c7e891e69ca161d79c74a0e32014645bb (patch)
treee52a0ab1c51c56a78a8157169fb0a8f7c0acdfc2 /quantum/haptic.c
parent7a761ebf7dfc4aa27132583a9a7ba7790df72b32 (diff)
Add full solenoid support on split keyboards (#21583)
Co-authored-by: Jacob Gable <jacob.gable@statheros.tech>
Diffstat (limited to 'quantum/haptic.c')
-rw-r--r--quantum/haptic.c12
1 files changed, 11 insertions, 1 deletions
diff --git a/quantum/haptic.c b/quantum/haptic.c
index 5a700dca38..a1fea29625 100644
--- a/quantum/haptic.c
+++ b/quantum/haptic.c
@@ -20,6 +20,7 @@
20#include "debug.h" 20#include "debug.h"
21#include "usb_device_state.h" 21#include "usb_device_state.h"
22#include "gpio.h" 22#include "gpio.h"
23#include "keyboard.h"
23 24
24#ifdef HAPTIC_DRV2605L 25#ifdef HAPTIC_DRV2605L
25# include "drv2605l.h" 26# include "drv2605l.h"
@@ -58,6 +59,11 @@ static void set_haptic_config_enable(bool enabled) {
58} 59}
59 60
60void haptic_init(void) { 61void haptic_init(void) {
62// only initialize on secondary boards if the user desires
63#if defined(SPLIT_KEYBOARD) && !defined(SPLIT_HAPTIC_ENABLE)
64 if (!is_keyboard_master()) return;
65#endif
66
61 if (!eeconfig_is_enabled()) { 67 if (!eeconfig_is_enabled()) {
62 eeconfig_init(); 68 eeconfig_init();
63 } 69 }
@@ -99,8 +105,12 @@ void haptic_init(void) {
99 105
100void haptic_task(void) { 106void haptic_task(void) {
101#ifdef HAPTIC_SOLENOID 107#ifdef HAPTIC_SOLENOID
108// Only run task on seconary boards if the user desires
109# if defined(SPLIT_KEYBOARD) && !defined(SPLIT_HAPTIC_ENABLE)
110 if (!is_keyboard_master()) return;
111# endif
102 solenoid_check(); 112 solenoid_check();
103#endif 113#endif // HAPTIC_SOLENOID
104} 114}
105 115
106void eeconfig_debug_haptic(void) { 116void eeconfig_debug_haptic(void) {