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/>.
29 #include "split_util.h"
30 #include "pro_micro.h"
40 #ifndef DEBOUNCING_DELAY
41 # define DEBOUNCING_DELAY 5
44 #if (DEBOUNCING_DELAY > 0)
45 static uint16_t debouncing_time;
46 static bool debouncing = false;
49 #if (MATRIX_COLS <= 8)
50 # define print_matrix_header() print("\nr/c 01234567\n")
51 # define print_matrix_row(row) print_bin_reverse8(matrix_get_row(row))
52 # define matrix_bitpop(i) bitpop(matrix[i])
53 # define ROW_SHIFTER ((uint8_t)1)
55 # error "Currently only supports 8 COLS"
57 static matrix_row_t matrix_debouncing[MATRIX_ROWS];
59 #define ERROR_DISCONNECT_COUNT 5
61 #define ROWS_PER_HAND (MATRIX_ROWS/2)
63 static uint8_t error_count = 0;
65 static const uint8_t row_pins[MATRIX_ROWS] = MATRIX_ROW_PINS;
66 static const uint8_t col_pins[MATRIX_COLS] = MATRIX_COL_PINS;
68 /* matrix state(1:on, 0:off) */
69 static matrix_row_t matrix[MATRIX_ROWS];
70 static matrix_row_t matrix_debouncing[MATRIX_ROWS];
72 #if (DIODE_DIRECTION == COL2ROW)
73 static void init_cols(void);
74 static bool read_cols_on_row(matrix_row_t current_matrix[], uint8_t current_row);
75 static void unselect_rows(void);
76 static void select_row(uint8_t row);
77 static void unselect_row(uint8_t row);
78 #elif (DIODE_DIRECTION == ROW2COL)
79 static void init_rows(void);
80 static bool read_rows_on_col(matrix_row_t current_matrix[], uint8_t current_col);
81 static void unselect_cols(void);
82 static void unselect_col(uint8_t col);
83 static void select_col(uint8_t col);
86 __attribute__ ((weak))
87 void matrix_init_kb(void) {
91 __attribute__ ((weak))
92 void matrix_scan_kb(void) {
96 __attribute__ ((weak))
97 void matrix_init_user(void) {
100 __attribute__ ((weak))
101 void matrix_scan_user(void) {
105 uint8_t matrix_rows(void)
111 uint8_t matrix_cols(void)
116 void matrix_init(void)
121 // initialize row and col
127 // initialize matrix state: all keys off
128 for (uint8_t i=0; i < MATRIX_ROWS; i++) {
130 matrix_debouncing[i] = 0;
133 matrix_init_quantum();
137 uint8_t _matrix_scan(void)
139 int offset = isLeftHand ? 0 : (ROWS_PER_HAND);
140 #if (DIODE_DIRECTION == COL2ROW)
141 // Set row, read cols
142 for (uint8_t current_row = 0; current_row < ROWS_PER_HAND; current_row++) {
143 # if (DEBOUNCING_DELAY > 0)
144 bool matrix_changed = read_cols_on_row(matrix_debouncing+offset, current_row);
146 if (matrix_changed) {
148 debouncing_time = timer_read();
152 read_cols_on_row(matrix+offset, current_row);
157 #elif (DIODE_DIRECTION == ROW2COL)
158 // Set col, read rows
159 for (uint8_t current_col = 0; current_col < MATRIX_COLS; current_col++) {
160 # if (DEBOUNCING_DELAY > 0)
161 bool matrix_changed = read_rows_on_col(matrix_debouncing+offset, current_col);
162 if (matrix_changed) {
164 debouncing_time = timer_read();
167 read_rows_on_col(matrix+offset, current_col);
173 # if (DEBOUNCING_DELAY > 0)
174 if (debouncing && (timer_elapsed(debouncing_time) > DEBOUNCING_DELAY)) {
175 for (uint8_t i = 0; i < ROWS_PER_HAND; i++) {
176 matrix[i+offset] = matrix_debouncing[i+offset];
187 // Get rows from other half over i2c
188 int i2c_transaction(void) {
189 int slaveOffset = (isLeftHand) ? (ROWS_PER_HAND) : 0;
191 int err = i2c_master_start(SLAVE_I2C_ADDRESS + I2C_WRITE);
192 if (err) goto i2c_error;
194 // start of matrix stored at 0x00
195 err = i2c_master_write(0x00);
196 if (err) goto i2c_error;
199 err = i2c_master_start(SLAVE_I2C_ADDRESS + I2C_READ);
200 if (err) goto i2c_error;
204 for (i = 0; i < ROWS_PER_HAND-1; ++i) {
205 matrix[slaveOffset+i] = i2c_master_read(I2C_ACK);
207 matrix[slaveOffset+i] = i2c_master_read(I2C_NACK);
210 i2c_error: // the cable is disconnceted, or something else went wrong
220 int serial_transaction(void) {
221 int slaveOffset = (isLeftHand) ? (ROWS_PER_HAND) : 0;
223 if (serial_update_buffers()) {
227 for (int i = 0; i < ROWS_PER_HAND; ++i) {
228 matrix[slaveOffset+i] = serial_slave_buffer[i];
234 uint8_t matrix_scan(void)
236 uint8_t ret = _matrix_scan();
239 if( i2c_transaction() ) {
241 if( serial_transaction() ) {
243 // turn on the indicator led when halves are disconnected
248 if (error_count > ERROR_DISCONNECT_COUNT) {
249 // reset other half if disconnected
250 int slaveOffset = (isLeftHand) ? (ROWS_PER_HAND) : 0;
251 for (int i = 0; i < ROWS_PER_HAND; ++i) {
252 matrix[slaveOffset+i] = 0;
256 // turn off the indicator led on no error
260 matrix_scan_quantum();
264 void matrix_slave_scan(void) {
267 int offset = (isLeftHand) ? 0 : ROWS_PER_HAND;
270 for (int i = 0; i < ROWS_PER_HAND; ++i) {
271 i2c_slave_buffer[i] = matrix[offset+i];
274 for (int i = 0; i < ROWS_PER_HAND; ++i) {
275 serial_slave_buffer[i] = matrix[offset+i];
280 bool matrix_is_modified(void)
282 if (debouncing) return false;
287 bool matrix_is_on(uint8_t row, uint8_t col)
289 return (matrix[row] & ((matrix_row_t)1<<col));
293 matrix_row_t matrix_get_row(uint8_t row)
298 void matrix_print(void)
300 print("\nr/c 0123456789ABCDEF\n");
301 for (uint8_t row = 0; row < MATRIX_ROWS; row++) {
302 phex(row); print(": ");
303 pbin_reverse16(matrix_get_row(row));
308 uint8_t matrix_key_count(void)
311 for (uint8_t i = 0; i < MATRIX_ROWS; i++) {
312 count += bitpop16(matrix[i]);
317 #if (DIODE_DIRECTION == COL2ROW)
319 static void init_cols(void)
321 for(uint8_t x = 0; x < MATRIX_COLS; x++) {
322 uint8_t pin = col_pins[x];
323 _SFR_IO8((pin >> 4) + 1) &= ~_BV(pin & 0xF); // IN
324 _SFR_IO8((pin >> 4) + 2) |= _BV(pin & 0xF); // HI
328 static bool read_cols_on_row(matrix_row_t current_matrix[], uint8_t current_row)
330 // Store last value of row prior to reading
331 matrix_row_t last_row_value = current_matrix[current_row];
333 // Clear data in matrix row
334 current_matrix[current_row] = 0;
336 // Select row and wait for row selecton to stabilize
337 select_row(current_row);
341 for(uint8_t col_index = 0; col_index < MATRIX_COLS; col_index++) {
343 // Select the col pin to read (active low)
344 uint8_t pin = col_pins[col_index];
345 uint8_t pin_state = (_SFR_IO8(pin >> 4) & _BV(pin & 0xF));
347 // Populate the matrix row with the state of the col pin
348 current_matrix[current_row] |= pin_state ? 0 : (ROW_SHIFTER << col_index);
352 unselect_row(current_row);
354 return (last_row_value != current_matrix[current_row]);
357 static void select_row(uint8_t row)
359 uint8_t pin = row_pins[row];
360 _SFR_IO8((pin >> 4) + 1) |= _BV(pin & 0xF); // OUT
361 _SFR_IO8((pin >> 4) + 2) &= ~_BV(pin & 0xF); // LOW
364 static void unselect_row(uint8_t row)
366 uint8_t pin = row_pins[row];
367 _SFR_IO8((pin >> 4) + 1) &= ~_BV(pin & 0xF); // IN
368 _SFR_IO8((pin >> 4) + 2) |= _BV(pin & 0xF); // HI
371 static void unselect_rows(void)
373 for(uint8_t x = 0; x < ROWS_PER_HAND; x++) {
374 uint8_t pin = row_pins[x];
375 _SFR_IO8((pin >> 4) + 1) &= ~_BV(pin & 0xF); // IN
376 _SFR_IO8((pin >> 4) + 2) |= _BV(pin & 0xF); // HI
380 #elif (DIODE_DIRECTION == ROW2COL)
382 static void init_rows(void)
384 for(uint8_t x = 0; x < ROWS_PER_HAND; x++) {
385 uint8_t pin = row_pins[x];
386 _SFR_IO8((pin >> 4) + 1) &= ~_BV(pin & 0xF); // IN
387 _SFR_IO8((pin >> 4) + 2) |= _BV(pin & 0xF); // HI
391 static bool read_rows_on_col(matrix_row_t current_matrix[], uint8_t current_col)
393 bool matrix_changed = false;
395 // Select col and wait for col selecton to stabilize
396 select_col(current_col);
400 for(uint8_t row_index = 0; row_index < ROWS_PER_HAND; row_index++)
403 // Store last value of row prior to reading
404 matrix_row_t last_row_value = current_matrix[row_index];
406 // Check row pin state
407 if ((_SFR_IO8(row_pins[row_index] >> 4) & _BV(row_pins[row_index] & 0xF)) == 0)
409 // Pin LO, set col bit
410 current_matrix[row_index] |= (ROW_SHIFTER << current_col);
414 // Pin HI, clear col bit
415 current_matrix[row_index] &= ~(ROW_SHIFTER << current_col);
418 // Determine if the matrix changed state
419 if ((last_row_value != current_matrix[row_index]) && !(matrix_changed))
421 matrix_changed = true;
426 unselect_col(current_col);
428 return matrix_changed;
431 static void select_col(uint8_t col)
433 uint8_t pin = col_pins[col];
434 _SFR_IO8((pin >> 4) + 1) |= _BV(pin & 0xF); // OUT
435 _SFR_IO8((pin >> 4) + 2) &= ~_BV(pin & 0xF); // LOW
438 static void unselect_col(uint8_t col)
440 uint8_t pin = col_pins[col];
441 _SFR_IO8((pin >> 4) + 1) &= ~_BV(pin & 0xF); // IN
442 _SFR_IO8((pin >> 4) + 2) |= _BV(pin & 0xF); // HI
445 static void unselect_cols(void)
447 for(uint8_t x = 0; x < MATRIX_COLS; x++) {
448 uint8_t pin = col_pins[x];
449 _SFR_IO8((pin >> 4) + 1) &= ~_BV(pin & 0xF); // IN
450 _SFR_IO8((pin >> 4) + 2) |= _BV(pin & 0xF); // HI