Keyboard firmwares for Atmel AVR and Cortex-M
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

matrix.h 230B

12345678910
  1. #include <stdbool.h>
  2. extern uint8_t *matrix;
  3. extern uint8_t *matrix_prev;
  4. void matrix_init(void);
  5. uint8_t matrix_scan(void);
  6. bool matrix_is_modified(void);
  7. bool matrix_has_ghost(void);
  8. bool matrix_has_ghost_in_row(uint8_t row);