summaryrefslogtreecommitdiffstats
path: root/keyboards/handwired/xealousbrown/xealousbrown.c
diff options
context:
space:
mode:
authorAlex Ong <alex.ong@unsw.edu.au>2021-08-07 16:51:38 +1000
committerGitHub <noreply@github.com>2021-08-06 23:51:38 -0700
commit8a9688bc64ea4283ecfa19dc2bf2c3312e7c646f (patch)
treec8057c093a03d3cdf3a49736ffb26bd800ddff20 /keyboards/handwired/xealousbrown/xealousbrown.c
parent9d88786b6fc6b1e9eeeba409cb5e4a17dd2bbe82 (diff)
[Keyboard] Use new matrix_output_select_delay api (#13861)
* Use new matrix_output_select_delay api * Updated delay to 15 after more spamming
Diffstat (limited to 'keyboards/handwired/xealousbrown/xealousbrown.c')
-rw-r--r--keyboards/handwired/xealousbrown/xealousbrown.c6
1 files changed, 1 insertions, 5 deletions
diff --git a/keyboards/handwired/xealousbrown/xealousbrown.c b/keyboards/handwired/xealousbrown/xealousbrown.c
index 03512b1acb..57c69bd312 100644
--- a/keyboards/handwired/xealousbrown/xealousbrown.c
+++ b/keyboards/handwired/xealousbrown/xealousbrown.c
@@ -50,13 +50,9 @@ void matrix_scan_user(void) {
last_timer = timer;
if ((timer % 1000 == 0) && (timer != last_print_out)) {
- print("Benchmark:");
- print("\n");
- print_dec(timer);
- print("\n");
+ print("Scans: ");
print_dec(scans);
print("\n");
- print("-------");
scans = 0;
last_print_out = timer;
}