diff options
author | Dasky <32983009+daskygit@users.noreply.github.com> | 2022-10-06 10:52:42 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-06 20:52:42 +1100 |
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 |