2015-08-21 16:46:53 +02:00
|
|
|
/*
|
2018-09-28 18:33:11 +02:00
|
|
|
Copyright 2012-2018 Jun Wako, Jack Humbert, Yiancar
|
2015-08-21 16:46:53 +02:00
|
|
|
|
|
|
|
This program is free software: you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation, either version 2 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
#include <stdint.h>
|
|
|
|
#include <stdbool.h>
|
|
|
|
#include "util.h"
|
|
|
|
#include "matrix.h"
|
2019-01-17 19:08:14 +01:00
|
|
|
#include "debounce.h"
|
2018-09-28 18:33:11 +02:00
|
|
|
#include "quantum.h"
|
2016-10-29 23:12:58 +02:00
|
|
|
|
2019-04-11 20:51:55 +02:00
|
|
|
#ifdef DIRECT_PINS
|
|
|
|
static pin_t direct_pins[MATRIX_ROWS][MATRIX_COLS] = DIRECT_PINS;
|
|
|
|
#elif (DIODE_DIRECTION == ROW2COL) || (DIODE_DIRECTION == COL2ROW)
|
2018-09-28 18:33:11 +02:00
|
|
|
static const pin_t row_pins[MATRIX_ROWS] = MATRIX_ROW_PINS;
|
|
|
|
static const pin_t col_pins[MATRIX_COLS] = MATRIX_COL_PINS;
|
2017-02-06 01:42:00 +01:00
|
|
|
#endif
|
2016-07-04 17:45:58 +02:00
|
|
|
|
|
|
|
/* matrix state(1:on, 0:off) */
|
2020-01-15 02:58:32 +01:00
|
|
|
extern matrix_row_t raw_matrix[MATRIX_ROWS]; // raw values
|
|
|
|
extern matrix_row_t matrix[MATRIX_ROWS]; // debounced values
|
2016-07-04 17:45:58 +02:00
|
|
|
|
2020-11-28 21:02:18 +01:00
|
|
|
static inline void setPinOutput_writeLow(pin_t pin) {
|
|
|
|
ATOMIC_BLOCK_FORCEON {
|
|
|
|
setPinOutput(pin);
|
|
|
|
writePinLow(pin);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void setPinInputHigh_atomic(pin_t pin) {
|
2020-12-17 15:06:30 +01:00
|
|
|
ATOMIC_BLOCK_FORCEON { setPinInputHigh(pin); }
|
2020-11-28 21:02:18 +01:00
|
|
|
}
|
|
|
|
|
2020-01-04 21:29:44 +01:00
|
|
|
// matrix code
|
2015-09-14 04:10:01 +02:00
|
|
|
|
2019-04-11 20:51:55 +02:00
|
|
|
#ifdef DIRECT_PINS
|
|
|
|
|
|
|
|
static void init_pins(void) {
|
2019-08-30 20:19:03 +02:00
|
|
|
for (int row = 0; row < MATRIX_ROWS; row++) {
|
|
|
|
for (int col = 0; col < MATRIX_COLS; col++) {
|
|
|
|
pin_t pin = direct_pins[row][col];
|
|
|
|
if (pin != NO_PIN) {
|
|
|
|
setPinInputHigh(pin);
|
|
|
|
}
|
|
|
|
}
|
2019-04-11 20:51:55 +02:00
|
|
|
}
|
|
|
|
}
|
2016-10-28 21:21:38 +02:00
|
|
|
|
2019-04-11 20:51:55 +02:00
|
|
|
static bool read_cols_on_row(matrix_row_t current_matrix[], uint8_t current_row) {
|
2020-05-21 18:59:56 +02:00
|
|
|
// Start with a clear matrix row
|
|
|
|
matrix_row_t current_row_value = 0;
|
2016-10-28 21:21:38 +02:00
|
|
|
|
2019-08-30 20:19:03 +02:00
|
|
|
for (uint8_t col_index = 0; col_index < MATRIX_COLS; col_index++) {
|
|
|
|
pin_t pin = direct_pins[current_row][col_index];
|
|
|
|
if (pin != NO_PIN) {
|
2020-05-21 18:59:56 +02:00
|
|
|
current_row_value |= readPin(pin) ? 0 : (MATRIX_ROW_SHIFTER << col_index);
|
2019-08-30 20:19:03 +02:00
|
|
|
}
|
2019-04-11 20:51:55 +02:00
|
|
|
}
|
|
|
|
|
2020-05-21 18:59:56 +02:00
|
|
|
// If the row has changed, store the row and return the changed flag.
|
|
|
|
if (current_matrix[current_row] != current_row_value) {
|
|
|
|
current_matrix[current_row] = current_row_value;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
2019-04-11 20:51:55 +02:00
|
|
|
}
|
|
|
|
|
2020-01-19 04:11:57 +01:00
|
|
|
#elif defined(DIODE_DIRECTION)
|
|
|
|
# if (DIODE_DIRECTION == COL2ROW)
|
2019-04-11 20:51:55 +02:00
|
|
|
|
2020-12-17 15:06:30 +01:00
|
|
|
static void select_row(uint8_t row) { setPinOutput_writeLow(row_pins[row]); }
|
2019-04-11 20:51:55 +02:00
|
|
|
|
2020-12-17 15:06:30 +01:00
|
|
|
static void unselect_row(uint8_t row) { setPinInputHigh_atomic(row_pins[row]); }
|
2019-04-11 20:51:55 +02:00
|
|
|
|
2019-08-30 20:19:03 +02:00
|
|
|
static void unselect_rows(void) {
|
|
|
|
for (uint8_t x = 0; x < MATRIX_ROWS; x++) {
|
2020-11-28 21:02:18 +01:00
|
|
|
setPinInputHigh_atomic(row_pins[x]);
|
2016-07-04 17:45:58 +02:00
|
|
|
}
|
2015-08-21 16:46:53 +02:00
|
|
|
}
|
|
|
|
|
2019-04-11 20:51:55 +02:00
|
|
|
static void init_pins(void) {
|
2019-08-30 20:19:03 +02:00
|
|
|
unselect_rows();
|
|
|
|
for (uint8_t x = 0; x < MATRIX_COLS; x++) {
|
2020-11-28 21:02:18 +01:00
|
|
|
setPinInputHigh_atomic(col_pins[x]);
|
2019-08-30 20:19:03 +02:00
|
|
|
}
|
2019-04-11 20:51:55 +02:00
|
|
|
}
|
|
|
|
|
2020-05-21 19:39:29 +02:00
|
|
|
static bool read_cols_on_row(matrix_row_t current_matrix[], uint8_t current_row) {
|
2020-05-21 18:59:56 +02:00
|
|
|
// Start with a clear matrix row
|
|
|
|
matrix_row_t current_row_value = 0;
|
2015-09-14 04:10:01 +02:00
|
|
|
|
2021-01-13 02:46:22 +01:00
|
|
|
// Select row
|
2016-10-28 23:24:20 +02:00
|
|
|
select_row(current_row);
|
2021-01-13 02:46:22 +01:00
|
|
|
matrix_output_select_delay();
|
2016-10-28 21:21:38 +02:00
|
|
|
|
2016-10-28 23:24:20 +02:00
|
|
|
// For each col...
|
2019-08-30 20:19:03 +02:00
|
|
|
for (uint8_t col_index = 0; col_index < MATRIX_COLS; col_index++) {
|
2016-10-28 23:24:20 +02:00
|
|
|
// Select the col pin to read (active low)
|
2018-09-28 18:33:11 +02:00
|
|
|
uint8_t pin_state = readPin(col_pins[col_index]);
|
2016-10-28 23:24:20 +02:00
|
|
|
|
|
|
|
// Populate the matrix row with the state of the col pin
|
2020-05-21 18:59:56 +02:00
|
|
|
current_row_value |= pin_state ? 0 : (MATRIX_ROW_SHIFTER << col_index);
|
2016-10-28 23:24:20 +02:00
|
|
|
}
|
2016-10-29 17:39:03 +02:00
|
|
|
|
|
|
|
// Unselect row
|
|
|
|
unselect_row(current_row);
|
2021-05-19 22:43:36 +02:00
|
|
|
matrix_output_unselect_delay(); // wait for all Col signals to go HIGH
|
2016-10-29 23:12:58 +02:00
|
|
|
|
2020-05-21 18:59:56 +02:00
|
|
|
// If the row has changed, store the row and return the changed flag.
|
|
|
|
if (current_matrix[current_row] != current_row_value) {
|
|
|
|
current_matrix[current_row] = current_row_value;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
2015-08-21 16:46:53 +02:00
|
|
|
}
|
|
|
|
|
2020-01-19 04:11:57 +01:00
|
|
|
# elif (DIODE_DIRECTION == ROW2COL)
|
2019-04-11 20:51:55 +02:00
|
|
|
|
2020-12-17 15:06:30 +01:00
|
|
|
static void select_col(uint8_t col) { setPinOutput_writeLow(col_pins[col]); }
|
2016-10-28 21:21:38 +02:00
|
|
|
|
2020-12-17 15:06:30 +01:00
|
|
|
static void unselect_col(uint8_t col) { setPinInputHigh_atomic(col_pins[col]); }
|
2016-10-28 21:21:38 +02:00
|
|
|
|
2019-08-30 20:19:03 +02:00
|
|
|
static void unselect_cols(void) {
|
|
|
|
for (uint8_t x = 0; x < MATRIX_COLS; x++) {
|
2020-11-28 21:02:18 +01:00
|
|
|
setPinInputHigh_atomic(col_pins[x]);
|
2016-05-24 05:42:21 +02:00
|
|
|
}
|
2016-07-04 17:45:58 +02:00
|
|
|
}
|
|
|
|
|
2019-04-11 20:51:55 +02:00
|
|
|
static void init_pins(void) {
|
2019-08-30 20:19:03 +02:00
|
|
|
unselect_cols();
|
|
|
|
for (uint8_t x = 0; x < MATRIX_ROWS; x++) {
|
2020-11-28 21:02:18 +01:00
|
|
|
setPinInputHigh_atomic(row_pins[x]);
|
2019-08-30 20:19:03 +02:00
|
|
|
}
|
2016-10-28 21:21:38 +02:00
|
|
|
}
|
2016-07-04 17:45:58 +02:00
|
|
|
|
2019-08-30 20:19:03 +02:00
|
|
|
static bool read_rows_on_col(matrix_row_t current_matrix[], uint8_t current_col) {
|
2016-10-29 23:12:58 +02:00
|
|
|
bool matrix_changed = false;
|
2016-10-28 21:21:38 +02:00
|
|
|
|
2021-01-13 02:46:22 +01:00
|
|
|
// Select col
|
2016-10-28 23:24:20 +02:00
|
|
|
select_col(current_col);
|
2021-01-13 02:46:22 +01:00
|
|
|
matrix_output_select_delay();
|
2016-10-28 21:21:38 +02:00
|
|
|
|
2016-10-28 23:24:20 +02:00
|
|
|
// For each row...
|
2019-08-30 20:19:03 +02:00
|
|
|
for (uint8_t row_index = 0; row_index < MATRIX_ROWS; row_index++) {
|
2016-10-29 23:12:58 +02:00
|
|
|
// Store last value of row prior to reading
|
2020-05-21 19:39:29 +02:00
|
|
|
matrix_row_t last_row_value = current_matrix[row_index];
|
2020-05-21 18:59:56 +02:00
|
|
|
matrix_row_t current_row_value = last_row_value;
|
2016-10-28 23:24:20 +02:00
|
|
|
|
2016-10-29 17:39:03 +02:00
|
|
|
// Check row pin state
|
2019-08-30 20:19:03 +02:00
|
|
|
if (readPin(row_pins[row_index]) == 0) {
|
2016-10-29 17:39:03 +02:00
|
|
|
// Pin LO, set col bit
|
2020-05-21 18:59:56 +02:00
|
|
|
current_row_value |= (MATRIX_ROW_SHIFTER << current_col);
|
2019-08-30 20:19:03 +02:00
|
|
|
} else {
|
2016-10-29 17:39:03 +02:00
|
|
|
// Pin HI, clear col bit
|
2020-05-21 18:59:56 +02:00
|
|
|
current_row_value &= ~(MATRIX_ROW_SHIFTER << current_col);
|
2016-10-29 17:39:03 +02:00
|
|
|
}
|
2016-10-29 23:12:58 +02:00
|
|
|
|
|
|
|
// Determine if the matrix changed state
|
2020-05-21 18:59:56 +02:00
|
|
|
if ((last_row_value != current_row_value)) {
|
|
|
|
matrix_changed |= true;
|
|
|
|
current_matrix[row_index] = current_row_value;
|
2016-10-29 23:12:58 +02:00
|
|
|
}
|
2016-10-28 23:24:20 +02:00
|
|
|
}
|
2016-10-29 17:39:03 +02:00
|
|
|
|
|
|
|
// Unselect col
|
|
|
|
unselect_col(current_col);
|
2021-05-19 22:43:36 +02:00
|
|
|
matrix_output_unselect_delay(); // wait for all Row signals to go HIGH
|
2016-10-29 23:12:58 +02:00
|
|
|
|
|
|
|
return matrix_changed;
|
2016-10-28 21:21:38 +02:00
|
|
|
}
|
|
|
|
|
2020-01-19 04:11:57 +01:00
|
|
|
# else
|
|
|
|
# error DIODE_DIRECTION must be one of COL2ROW or ROW2COL!
|
|
|
|
# endif
|
|
|
|
#else
|
|
|
|
# error DIODE_DIRECTION is not defined!
|
2019-04-11 20:51:55 +02:00
|
|
|
#endif
|
2016-10-28 21:21:38 +02:00
|
|
|
|
2019-04-11 20:51:55 +02:00
|
|
|
void matrix_init(void) {
|
|
|
|
// initialize key pins
|
|
|
|
init_pins();
|
|
|
|
|
|
|
|
// initialize matrix state: all keys off
|
2019-08-30 20:19:03 +02:00
|
|
|
for (uint8_t i = 0; i < MATRIX_ROWS; i++) {
|
2019-04-11 20:51:55 +02:00
|
|
|
raw_matrix[i] = 0;
|
2019-08-30 20:19:03 +02:00
|
|
|
matrix[i] = 0;
|
2016-10-28 21:21:38 +02:00
|
|
|
}
|
2019-04-11 20:51:55 +02:00
|
|
|
|
|
|
|
debounce_init(MATRIX_ROWS);
|
|
|
|
|
|
|
|
matrix_init_quantum();
|
2016-10-28 21:21:38 +02:00
|
|
|
}
|
|
|
|
|
2019-08-30 20:19:03 +02:00
|
|
|
uint8_t matrix_scan(void) {
|
|
|
|
bool changed = false;
|
2019-04-11 20:51:55 +02:00
|
|
|
|
|
|
|
#if defined(DIRECT_PINS) || (DIODE_DIRECTION == COL2ROW)
|
2019-08-30 20:19:03 +02:00
|
|
|
// Set row, read cols
|
|
|
|
for (uint8_t current_row = 0; current_row < MATRIX_ROWS; current_row++) {
|
|
|
|
changed |= read_cols_on_row(raw_matrix, current_row);
|
|
|
|
}
|
2019-04-11 20:51:55 +02:00
|
|
|
#elif (DIODE_DIRECTION == ROW2COL)
|
2019-08-30 20:19:03 +02:00
|
|
|
// Set col, read rows
|
|
|
|
for (uint8_t current_col = 0; current_col < MATRIX_COLS; current_col++) {
|
|
|
|
changed |= read_rows_on_col(raw_matrix, current_col);
|
|
|
|
}
|
2016-10-28 21:21:38 +02:00
|
|
|
#endif
|
2019-04-11 20:51:55 +02:00
|
|
|
|
2019-08-30 20:19:03 +02:00
|
|
|
debounce(raw_matrix, matrix, MATRIX_ROWS, changed);
|
2019-04-11 20:51:55 +02:00
|
|
|
|
2019-08-30 20:19:03 +02:00
|
|
|
matrix_scan_quantum();
|
|
|
|
return (uint8_t)changed;
|
2019-04-11 20:51:55 +02:00
|
|
|
}
|