diff options
author | Nick Brassel <nick@tzarc.org> | 2021-05-18 17:02:28 +1000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-18 17:02:28 +1000 |
commit | 58142f0726147d538167ff3ab793743348f40dcd (patch) | |
tree | e3db28a5c97c75c101af821283c56ce4dc017a3a /tmk_core/protocol/arm_atsam | |
parent | 6cdc996e0b40e9cd9a368e5ac2be2341aa9d6747 (diff) |
Fixup housekeeping from being invoked twice per loop. (#12933)
Diffstat (limited to 'tmk_core/protocol/arm_atsam')
-rw-r--r-- | tmk_core/protocol/arm_atsam/main_arm_atsam.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tmk_core/protocol/arm_atsam/main_arm_atsam.c b/tmk_core/protocol/arm_atsam/main_arm_atsam.c index e4e79d3510..ce0f54593c 100644 --- a/tmk_core/protocol/arm_atsam/main_arm_atsam.c +++ b/tmk_core/protocol/arm_atsam/main_arm_atsam.c @@ -305,6 +305,9 @@ int main(void) { // dprintf("5v=%u 5vu=%u dlow=%u dhi=%u gca=%u gcd=%u\r\n", v_5v, v_5v_avg, v_5v_avg - V5_LOW, v_5v_avg - V5_HIGH, gcr_actual, gcr_desired); } #endif // CONSOLE_ENABLE + + // Run housekeeping + housekeeping_task(); } return 1; |