|
@@ -113,8 +113,8 @@ void last_encoder_activity_trigger(void) { last_encoder_modification_
|
|
|
|
|
|
// Only enable this if console is enabled to print to
|
|
// Only enable this if console is enabled to print to
|
|
#if defined(DEBUG_MATRIX_SCAN_RATE)
|
|
#if defined(DEBUG_MATRIX_SCAN_RATE)
|
|
-static uint32_t matrix_timer = 0;
|
|
|
|
-static uint32_t matrix_scan_count = 0;
|
|
|
|
|
|
+static uint32_t matrix_timer = 0;
|
|
|
|
+static uint32_t matrix_scan_count = 0;
|
|
static uint32_t last_matrix_scan_count = 0;
|
|
static uint32_t last_matrix_scan_count = 0;
|
|
|
|
|
|
void matrix_scan_perf_task(void) {
|
|
void matrix_scan_perf_task(void) {
|
|
@@ -126,14 +126,12 @@ void matrix_scan_perf_task(void) {
|
|
dprintf("matrix scan frequency: %lu\n", matrix_scan_count);
|
|
dprintf("matrix scan frequency: %lu\n", matrix_scan_count);
|
|
# endif
|
|
# endif
|
|
last_matrix_scan_count = matrix_scan_count;
|
|
last_matrix_scan_count = matrix_scan_count;
|
|
- matrix_timer = timer_now;
|
|
|
|
- matrix_scan_count = 0;
|
|
|
|
|
|
+ matrix_timer = timer_now;
|
|
|
|
+ matrix_scan_count = 0;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
-uint32_t get_matrix_scan_rate(void) {
|
|
|
|
- return last_matrix_scan_count;
|
|
|
|
-}
|
|
|
|
|
|
+uint32_t get_matrix_scan_rate(void) { return last_matrix_scan_count; }
|
|
#else
|
|
#else
|
|
# define matrix_scan_perf_task()
|
|
# define matrix_scan_perf_task()
|
|
#endif
|
|
#endif
|