diff options
| author | Dasky | 2022-10-06 11:52:42 +0200 |
|---|---|---|
| committer | GitHub | 2022-10-06 11:52:42 +0200 |
| commit | c255174cf3e55483f14351a69689e24e849445a0 (patch) | |
| tree | 0ac6490f9b99d15c2a6a3dba862cf44901a6e812 /quantum/keyboard.c | |
| parent | a9414f48405b6cc2019425077f22f0b162855c08 (diff) | |
Implement split comms watchdog (#18599)
Diffstat (limited to 'quantum/keyboard.c')
| -rw-r--r-- | quantum/keyboard.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/quantum/keyboard.c b/quantum/keyboard.c index 626e0a7ee1..280532a5fd 100644 --- a/quantum/keyboard.c +++ b/quantum/keyboard.c @@ -586,6 +586,10 @@ void keyboard_task(void) { quantum_task(); +#if defined(SPLIT_WATCHDOG_ENABLE) + split_watchdog_task(); +#endif + #if defined(RGBLIGHT_ENABLE) rgblight_task(); #endif |