diff options
author | tmk <nobody@nowhere> | 2010-10-24 01:17:26 +0900 |
---|---|---|
committer | tmk <nobody@nowhere> | 2010-10-24 01:17:26 +0900 |
commit | 06eb50be07ff16e4bfb046e4773185d9bcf048e9 (patch) | |
tree | 86a8fb688282004893eedd28641f8300c9d812d1 /hhkb/matrix.h | |
parent | 9d7979931e0037fc5ddc77a2cb895eb055501f34 (diff) |
hhkb: refactored
Diffstat (limited to 'hhkb/matrix.h')
-rw-r--r-- | hhkb/matrix.h | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/hhkb/matrix.h b/hhkb/matrix.h new file mode 100644 index 0000000000..5efffea5f5 --- /dev/null +++ b/hhkb/matrix.h @@ -0,0 +1,15 @@ +#ifndef MATRIX_H +#define MATRIX_H 1 + +#include <stdbool.h> +#include "matrix_skel.h" + + +#define MATRIX_ROWS 8 +#define MATRIX_COLS 8 + + +extern uint8_t *matrix; +extern uint8_t *matrix_prev; + +#endif |