Fix more ghosting: https://github.com/tompi/cheapino/issues/33
Should fix these: M, H, ? M ,Y, ? N, >, K N, >, I Not able to reproduce 4-letter differt row ghosting, and these are probably non-existant irl...
This commit is contained in:
@@ -28,9 +28,9 @@ uint32_t flash_led(uint32_t next_trigger_time, void *cb_arg) {
|
||||
}
|
||||
|
||||
void keyboard_post_init_user(void) {
|
||||
debug_enable=true;
|
||||
debug_matrix=true;
|
||||
debug_keyboard=true;
|
||||
//debug_enable=true;
|
||||
//debug_matrix=true;
|
||||
//debug_keyboard=true;
|
||||
//debug_mouse=true;
|
||||
|
||||
// Store user selected rgb hsv:
|
||||
|
||||
@@ -112,9 +112,17 @@ void fix_ghosting(matrix_row_t matrix[]) {
|
||||
rev(0B1001000000000000),
|
||||
rev(0B0101000000000000),
|
||||
rev(0B0001000000000000));
|
||||
fix_ghosting_column(matrix,
|
||||
rev(0B1001000000000000),
|
||||
rev(0B1010000000000000),
|
||||
rev(0B1000000000000000));
|
||||
|
||||
fix_ghosting_column(matrix,
|
||||
rev(0B0100100000000000),
|
||||
rev(0B0100010000000000),
|
||||
rev(0B0100000000000000));
|
||||
fix_ghosting_column(matrix,
|
||||
rev(0B0100100000000000),
|
||||
rev(0B1000100000000000),
|
||||
rev(0B0000100000000000));
|
||||
}
|
||||
|
||||
@@ -7,7 +7,7 @@
|
||||
"features": {
|
||||
"bootmagic": true,
|
||||
"command": false,
|
||||
"console": true,
|
||||
"console": false,
|
||||
"extrakey": true,
|
||||
"mousekey": true,
|
||||
"nkro": false
|
||||
|
||||
Reference in New Issue
Block a user