diff options
author | QMK Bot <hello@qmk.fm> | 2022-04-09 18:49:52 +0000 |
---|---|---|
committer | QMK Bot <hello@qmk.fm> | 2022-04-09 18:49:52 +0000 |
commit | 4ce02032081dfe66e5fc7b8267a2fe924987e508 (patch) | |
tree | 5801e5516f4a9d5c75d53d2b66c5f77d0cf9e285 /quantum/keyboard.c | |
parent | f4f2efd117727816f2bc5048fb37b34297db366f (diff) | |
parent | 84c9d6ff39b92892c385c320f3d36145d71c9095 (diff) |
Merge remote-tracking branch 'origin/master' into develop
Diffstat (limited to 'quantum/keyboard.c')
-rw-r--r-- | quantum/keyboard.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/quantum/keyboard.c b/quantum/keyboard.c index bb6463bf19..fc8a2fe8e3 100644 --- a/quantum/keyboard.c +++ b/quantum/keyboard.c @@ -149,7 +149,7 @@ void matrix_scan_perf_task(void) { matrix_scan_count++; uint32_t timer_now = timer_read32(); - if (TIMER_DIFF_32(timer_now, matrix_timer) > 1000) { + if (TIMER_DIFF_32(timer_now, matrix_timer) >= 1000) { # if defined(CONSOLE_ENABLE) dprintf("matrix scan frequency: %lu\n", matrix_scan_count); # endif |