]> git.gir.st - tmk_keyboard.git/blob - matrix.h
add anti-ghost logic
[tmk_keyboard.git] / matrix.h
1 #include <stdbool.h>
2
3 extern uint8_t *matrix;
4 extern uint8_t *matrix_prev;
5
6 void matrix_init(void);
7 uint8_t matrix_scan(void);
8 bool matrix_is_modified(void);
9 bool matrix_has_ghost(void);
10 bool matrix_has_ghost_in_row(uint8_t row);
Imprint / Impressum