2 Copyright 2012 Jun Wako <wakojun@gmail.com>
3 Copyright 2017 Cole Markham <cole@ccmcomputing.net>
5 This program is free software: you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation, either version 2 of the License, or
8 (at your option) any later version.
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
15 You should have received a copy of the GNU General Public License
16 along with this program. If not, see <http://www.gnu.org/licenses/>.
36 #ifndef DEBOUNCING_DELAY
37 # define DEBOUNCING_DELAY 5
40 #if (DEBOUNCING_DELAY > 0)
41 static uint16_t debouncing_time;
42 static bool debouncing = false;
45 #if (MATRIX_COLS <= 8)
46 # define print_matrix_header() print("\nr/c 01234567\n")
47 # define print_matrix_row(row) print_bin_reverse8(matrix_get_row(row))
48 # define matrix_bitpop(i) bitpop(matrix[i])
49 # define ROW_SHIFTER ((uint8_t)1)
50 #elif (MATRIX_COLS <= 16)
51 # define print_matrix_header() print("\nr/c 0123456789ABCDEF\n")
52 # define print_matrix_row(row) print_bin_reverse16(matrix_get_row(row))
53 # define matrix_bitpop(i) bitpop16(matrix[i])
54 # define ROW_SHIFTER ((uint16_t)1)
55 #elif (MATRIX_COLS <= 32)
56 # define print_matrix_header() print("\nr/c 0123456789ABCDEF0123456789ABCDEF\n")
57 # define print_matrix_row(row) print_bin_reverse32(matrix_get_row(row))
58 # define matrix_bitpop(i) bitpop32(matrix[i])
59 # define ROW_SHIFTER ((uint32_t)1)
62 static matrix_row_t matrix_debouncing[MATRIX_ROWS];
64 static const uint8_t row_pins[MATRIX_ROWS] = MATRIX_ROW_PINS;
65 static const uint8_t col_pins[4] = MATRIX_COL_PINS;
66 //static const uint8_t lrow_pins[MATRIX_ROWS] = LED_ROW_PINS;
67 //static const uint8_t lcol_pins[4] = LED_COL_PINS;
69 /* matrix state(1:on, 0:off) */
70 static matrix_row_t matrix[MATRIX_ROWS];
71 static matrix_row_t matrix_debouncing[MATRIX_ROWS];
72 static void init_rows(void);
73 //static void init_lcols(void);
74 static bool read_rows_on_col(matrix_row_t current_matrix[], uint8_t current_col);
75 static void unselect_cols(void);
76 static void select_col(uint8_t col);
79 __attribute__ ((weak))
80 void matrix_init_kb(void) {
84 __attribute__ ((weak))
85 void matrix_scan_kb(void) {
89 __attribute__ ((weak))
90 void matrix_init_user(void) {
93 __attribute__ ((weak))
94 void matrix_scan_user(void) {
98 uint8_t matrix_rows(void)
104 uint8_t matrix_cols(void)
109 void matrix_init(void)
114 // initialize row and col
121 // initialize matrix state: all keys off
122 for (uint8_t i=0; i < MATRIX_ROWS; i++) {
124 matrix_debouncing[i] = 0;
127 matrix_init_quantum();
131 uint8_t _matrix_scan(void)
133 // Set col, read rows
134 for (uint8_t current_col = 0; current_col < MATRIX_COLS; current_col++) {
135 # if (DEBOUNCING_DELAY > 0)
136 bool matrix_changed = read_rows_on_col(matrix_debouncing, current_col);
137 if (matrix_changed) {
139 debouncing_time = timer_read();
142 read_rows_on_col(matrix, current_col);
147 # if (DEBOUNCING_DELAY > 0)
148 if (debouncing && (timer_elapsed(debouncing_time) > DEBOUNCING_DELAY)) {
149 for (uint8_t i = 0; i < MATRIX_ROWS; i++) {
150 matrix[i] = matrix_debouncing[i];
159 uint8_t matrix_scan(void)
161 uint8_t ret = _matrix_scan();
162 matrix_scan_quantum();
166 bool matrix_is_modified(void)
168 if (debouncing) return false;
173 bool matrix_is_on(uint8_t row, uint8_t col)
175 return (matrix[row] & ((matrix_row_t)1<<col));
179 matrix_row_t matrix_get_row(uint8_t row)
184 void matrix_print(void)
186 print("\nr/c 0123456789ABCDEF\n");
187 for (uint8_t row = 0; row < MATRIX_ROWS; row++) {
188 phex(row); print(": ");
189 pbin_reverse16(matrix_get_row(row));
194 uint8_t matrix_key_count(void)
197 for (uint8_t i = 0; i < MATRIX_ROWS; i++) {
198 count += bitpop16(matrix[i]);
204 static void init_rows(void)
206 for(uint8_t x = 0; x < MATRIX_ROWS; x++) {
207 uint8_t pin = row_pins[x];
208 _SFR_IO8((pin >> 4) + 1) &= ~_BV(pin & 0xF); // IN
209 _SFR_IO8((pin >> 4) + 2) |= _BV(pin & 0xF); // HI
214 static bool read_rows_on_col(matrix_row_t current_matrix[], uint8_t current_col)
216 bool matrix_changed = false;
218 // Select col and wait for col selection to stabilize
219 select_col(current_col);
223 for(uint8_t row_index = 0; row_index < MATRIX_ROWS; row_index++)
226 // Store last value of row prior to reading
227 matrix_row_t last_row_value = current_matrix[row_index];
229 // Check row pin state
230 if ((_SFR_IO8(row_pins[row_index] >> 4) & _BV(row_pins[row_index] & 0xF)) == 0)
232 // Pin LO, set col bit
233 current_matrix[row_index] |= (ROW_SHIFTER << current_col);
237 // Pin HI, clear col bit
238 current_matrix[row_index] &= ~(ROW_SHIFTER << current_col);
241 // Determine if the matrix changed state
242 if ((last_row_value != current_matrix[row_index]) && !(matrix_changed))
244 matrix_changed = true;
251 return matrix_changed;
254 static void select_col(uint8_t col)
257 col = MATRIX_COLS - col - 1;
259 for(uint8_t x = 0; x < 4; x++) {
260 uint8_t pin = col_pins[x];
261 _SFR_IO8((pin >> 4) + 1) |= _BV(pin & 0xF); // OUT
262 if (((col >> x) & 0x1) == 1){
263 _SFR_IO8((pin >> 4) + 2) |= _BV(pin & 0xF); // HIGH
265 _SFR_IO8((pin >> 4) + 2) &= ~_BV(pin & 0xF); // LOW
270 static void unselect_cols(void)
272 // FIXME This really needs to use the global enable on the decoder, because currently this sets the value to col1
273 for(uint8_t x = 0; x < 4; x++) {
274 uint8_t pin = col_pins[x];
275 _SFR_IO8((pin >> 4) + 1) |= _BV(pin & 0xF); // OUT
276 _SFR_IO8((pin >> 4) + 2) &= ~_BV(pin & 0xF); // LOW