diff options
author | tmk <nobody@nowhere> | 2010-08-23 15:46:24 +0900 |
---|---|---|
committer | tmk <nobody@nowhere> | 2010-08-23 23:11:14 +0900 |
commit | 3b31337cd8a5fe8b02924f2056ad2648a028c563 (patch) | |
tree | 060cc2413f74f89c957655d3fe954ac58c3ae42d /matrix.h | |
parent | c17f07819ffeb119a09d4acdfa5097b272d2e2f9 (diff) |
perform nomal keyboard behavior. It works now!!!
Diffstat (limited to 'matrix.h')
-rw-r--r-- | matrix.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/matrix.h b/matrix.h new file mode 100644 index 0000000000..6624215692 --- /dev/null +++ b/matrix.h @@ -0,0 +1,6 @@ + +extern uint8_t *matrix; +extern uint8_t *prev_matrix; + +void matrix_init(void); +uint8_t matrix_scan(void); |