1
0
Fork 0

Update to xealousbrown. (#8215)

* Update to xealousbrown.

5-13ms Latency decrease, 4x scan rate improvement.
(CUSTOM_MATRIX = lite) is a really great feature!

* Updated Readme.md, added an extra speedhack.

* More optimizations

* Update keyboards/handwired/xealousbrown/rules.mk

* Update keyboards/handwired/xealousbrown/rules.mk
This commit is contained in:
Alex Ong 2020-04-21 17:41:15 +10:00 committed by GitHub
parent 92a50a386a
commit 837ffd0006
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 188 additions and 16 deletions

View file

@ -6,3 +6,44 @@ void matrix_init_kb(void) {
matrix_init_user();
}
#ifdef BENCHMARK_MATRIX
# include "timer.h"
# include <stdint.h>
# include <stdbool.h>
# include "wait.h"
# include "util.h"
# include "matrix.h"
# include "quantum.h"
static int scans = 0;
static uint16_t last_print_out = 0;
static int last_timer = 0;
void matrix_scan_user(void) {
scans++;
uint16_t timer = timer_read();
if (timer != last_timer && timer != last_timer + 1) {
print("MS:\n");
print_dec(timer);
print("->");
print_dec(last_timer);
print("\n");
}
last_timer = timer;
if ((timer % 1000 == 0) && (timer != last_print_out)) {
print("Benchmark:");
print("\n");
print_dec(timer);
print("\n");
print_dec(scans);
print("\n");
print("-------");
scans = 0;
last_print_out = timer;
}
}
#endif