]> git.donarmstrong.com Git - qmk_firmware.git/blob - converter/news_usb/matrix.c
f0d5b58633a3d77f9123cad11aa2ea36260fd4f6
[qmk_firmware.git] / converter / news_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 "news.h"
25 #include "matrix.h"
26 #include "debug.h"
27
28
29 /*
30  * Matrix Array usage:
31  *
32  * ROW: 16
33  * COL:8
34  *
35  *    8bit wide
36  *   +---------+
37  *  0|00 ... 07|
38  *  1|08 ... 0F|
39  *  :|   ...   |
40  *  :|   ...   |
41  *  E|70 ... 77|
42  *  F|78 ... 7F|
43  *   +---------+
44  *
45  */
46 static uint8_t matrix[MATRIX_ROWS];
47 #define ROW(code)      ((code>>3)&0xF)
48 #define COL(code)      (code&0x07)
49
50 static bool is_modified = false;
51
52
53 inline
54 uint8_t matrix_rows(void)
55 {
56     return MATRIX_ROWS;
57 }
58
59 inline
60 uint8_t matrix_cols(void)
61 {
62     return MATRIX_COLS;
63 }
64
65 void matrix_init(void)
66 {
67     news_init();
68
69     // initialize matrix state: all keys off
70     for (uint8_t i=0; i < MATRIX_ROWS; i++) matrix[i] = 0x00;
71
72     return;
73 }
74
75 uint8_t matrix_scan(void)
76 {
77     is_modified = false;
78
79     uint8_t code;
80     code = news_recv();
81     if (code == 0) {
82         return 0;
83     }
84
85     phex(code); print(" ");
86     if (code&0x80) {
87         // break code
88         if (matrix_is_on(ROW(code), COL(code))) {
89             matrix[ROW(code)] &= ~(1<<COL(code));
90             is_modified = true;
91         }
92     } else {
93         // make code
94         if (!matrix_is_on(ROW(code), COL(code))) {
95             matrix[ROW(code)] |=  (1<<COL(code));
96             is_modified = true;
97         }
98     }
99     return code;
100 }
101
102 bool matrix_is_modified(void)
103 {
104     return is_modified;
105 }
106
107 inline
108 bool matrix_has_ghost(void)
109 {
110     return false;
111 }
112
113 inline
114 bool matrix_is_on(uint8_t row, uint8_t col)
115 {
116     return (matrix[row] & (1<<col));
117 }
118
119 inline
120 uint8_t matrix_get_row(uint8_t row)
121 {
122     return matrix[row];
123 }
124
125 void matrix_print(void)
126 {
127     print("\nr/c 01234567\n");
128     for (uint8_t row = 0; row < matrix_rows(); row++) {
129         phex(row); print(": ");
130         pbin_reverse(matrix_get_row(row));
131         print("\n");
132     }
133 }
134
135 uint8_t matrix_key_count(void)
136 {
137     uint8_t count = 0;
138     for (uint8_t i = 0; i < MATRIX_ROWS; i++) {
139         count += bitpop(matrix[i]);
140     }
141     return count;
142 }