]> git.friedersdorff.com Git - max/tmk_keyboard.git/blob - converter/pc88_usb/matrix.c
ibmpc_usb: Add prebuilt firmware files
[max/tmk_keyboard.git] / converter / pc88_usb / matrix.c
1 /*
2 Copyright 2012 Jun Wako <wakojun@gmail.com>
3
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.
8
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.
13
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/>.
16 */
17
18 #include <stdint.h>
19 #include <stdbool.h>
20 #include <avr/io.h>
21 #include <util/delay.h>
22 #include "print.h"
23 #include "util.h"
24 #include "matrix.h"
25 #include "led.h"
26 #include "debug.h"
27 #include "protocol/serial.h"
28
29
30 /*
31  * Matrix Array usage:
32  *
33  * ROW: 16(4bits)
34  * COL:  8(3bits)
35  *
36  *    8bit wide
37  *   +---------+
38  *  0|00 ... 07|
39  *  1|08 ... 0F|
40  *  :|   ...   |
41  *  :|   ...   |
42  *  E|70 ... 77|
43  *  F|78 ... 7F|
44  *   +---------+
45  */
46 static uint8_t matrix[MATRIX_ROWS];
47 #define ROW(code)      ((code>>3)&0xF)
48 #define COL(code)      (code&0x07)
49
50 void matrix_init(void)
51 {
52     debug_keyboard = true;
53
54     serial_init();
55
56         // initialize matrix state: all keys off
57     for (uint8_t i=0; i < MATRIX_ROWS; i++) matrix[i] = 0x00;
58
59         print("matrix_init done.\n");
60     return;
61 }
62
63 uint8_t matrix_scan(void)
64 {
65     uint16_t code;
66     code = serial_recv2();
67     if (code == -1) {
68         return 0;
69     }
70
71     print_hex8(code); print(" ");
72
73     if (code&0x80) {
74         // break code
75         if (matrix_is_on(ROW(code), COL(code))) {
76             matrix[ROW(code)] &= ~(1<<COL(code));
77         }
78     } else {
79         // make code
80         if (!matrix_is_on(ROW(code), COL(code))) {
81             matrix[ROW(code)] |=  (1<<COL(code));
82         }
83     }
84         return code;
85 }
86
87 inline
88 uint8_t matrix_get_row(uint8_t row)
89 {
90     return matrix[row];
91 }
92
93 void led_set(uint8_t usb_led)
94 {
95 }