Keyboard firmwares for Atmel AVR and Cortex-M
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

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);