2 Copyright 2012 Jun Wako <wakojun@gmail.com>
4 This program is free software: you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by
6 the Free Software Foundation, either version 2 of the License, or
7 (at your option) any later version.
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 GNU General Public License for more details.
14 You should have received a copy of the GNU General Public License
15 along with this program. If not, see <http://www.gnu.org/licenses/>.
21 #include <util/delay.h>
46 static uint8_t matrix[MATRIX_ROWS];
47 #define ROW(code) ((code>>3)&0xF)
48 #define COL(code) (code&0x07)
50 static bool is_modified = false;
53 void matrix_init(void)
57 // initialize matrix state: all keys off
58 for (uint8_t i=0; i < MATRIX_ROWS; i++) matrix[i] = 0x00;
63 uint8_t matrix_scan(void)
68 code = serial_recv2();
73 dprintf("%02X\n", code);
76 if (matrix_is_on(ROW(code), COL(code))) {
77 matrix[ROW(code)] &= ~(1<<COL(code));
82 if (!matrix_is_on(ROW(code), COL(code))) {
83 matrix[ROW(code)] |= (1<<COL(code));
91 uint8_t matrix_get_row(uint8_t row)