Keyboard firmwares for Atmel AVR and Cortex-M
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

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