core: Fix for missing key on fc660c
This commit is contained in:
parent
4befc879f6
commit
44fc56a869
1 changed files with 3 additions and 1 deletions
|
|
@ -137,8 +137,10 @@ void keyboard_task(void)
|
||||||
hook_matrix_change(e);
|
hook_matrix_change(e);
|
||||||
// record a processed key
|
// record a processed key
|
||||||
matrix_prev[r] ^= ((matrix_row_t)1<<c);
|
matrix_prev[r] ^= ((matrix_row_t)1<<c);
|
||||||
|
|
||||||
|
// This can miss stroke when scan matrix takes long like Topre
|
||||||
// process a key per task call
|
// process a key per task call
|
||||||
goto MATRIX_LOOP_END;
|
//goto MATRIX_LOOP_END;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue