1
0
Fork 0

add mouse function.

This commit is contained in:
tmk 2010-09-30 14:17:01 +09:00
parent e7c6839d2d
commit d3b1af9572
14 changed files with 281 additions and 123 deletions

View file

@ -1,3 +1,6 @@
#ifndef MATRIX_H
#define MATRIX_H 1
#include <stdbool.h>
extern uint8_t *matrix;
@ -8,3 +11,5 @@ uint8_t matrix_scan(void);
bool matrix_is_modified(void);
bool matrix_has_ghost(void);
bool matrix_has_ghost_in_row(uint8_t row);
#endif