forked from mirror/qmk_firmware
Fix incorrect matrix_scan_custom implementations (#25999)
This commit is contained in:
@@ -14,28 +14,23 @@ GNU General Public License for more details.
|
|||||||
You should have received a copy of the GNU General Public License
|
You should have received a copy of the GNU General Public License
|
||||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
#include "wait.h"
|
|
||||||
#include "util.h"
|
|
||||||
#include "matrix.h"
|
#include "matrix.h"
|
||||||
|
|
||||||
// Encoder things
|
// Encoder things
|
||||||
#define SWITCH_1 F7
|
#define SWITCH_1 F7
|
||||||
#define SWITCH_2 D7
|
#define SWITCH_2 D7
|
||||||
static bool read_encoder_switches(matrix_row_t current_matrix[], uint8_t current_row);
|
|
||||||
|
|
||||||
static const pin_t row_pins[MATRIX_ROWS] = MATRIX_ROW_PINS;
|
static const pin_t row_pins[MATRIX_ROWS] = MATRIX_ROW_PINS;
|
||||||
static const pin_t col_pins[MATRIX_COLS] = MATRIX_COL_PINS;
|
static const pin_t col_pins[MATRIX_COLS] = MATRIX_COL_PINS;
|
||||||
|
|
||||||
/* matrix state(1:on, 0:off) */
|
|
||||||
extern matrix_row_t raw_matrix[MATRIX_ROWS]; // raw values
|
|
||||||
extern matrix_row_t matrix[MATRIX_ROWS]; // debounced values
|
|
||||||
|
|
||||||
static void select_row(uint8_t row) {
|
static void select_row(uint8_t row) {
|
||||||
gpio_set_pin_output(row_pins[row]);
|
gpio_set_pin_output(row_pins[row]);
|
||||||
gpio_write_pin_low(row_pins[row]);
|
gpio_write_pin_low(row_pins[row]);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void unselect_row(uint8_t row) { gpio_set_pin_input_high(row_pins[row]); }
|
static void unselect_row(uint8_t row) {
|
||||||
|
gpio_set_pin_input_high(row_pins[row]);
|
||||||
|
}
|
||||||
|
|
||||||
static void unselect_rows(void) {
|
static void unselect_rows(void) {
|
||||||
for (uint8_t x = 0; x < MATRIX_ROWS; x++) {
|
for (uint8_t x = 0; x < MATRIX_ROWS; x++) {
|
||||||
@@ -57,9 +52,9 @@ static bool read_cols_on_row(matrix_row_t current_matrix[], uint8_t current_row)
|
|||||||
// Clear data in matrix row
|
// Clear data in matrix row
|
||||||
current_matrix[current_row] = 0;
|
current_matrix[current_row] = 0;
|
||||||
|
|
||||||
// Select row and wait for row selecton to stabilize
|
// Select row and wait for row selection to stabilize
|
||||||
select_row(current_row);
|
select_row(current_row);
|
||||||
wait_us(30);
|
matrix_io_delay();
|
||||||
|
|
||||||
// For each col...
|
// For each col...
|
||||||
for (uint8_t col_index = 0; col_index < MATRIX_COLS; col_index++) {
|
for (uint8_t col_index = 0; col_index < MATRIX_COLS; col_index++) {
|
||||||
@@ -76,6 +71,19 @@ static bool read_cols_on_row(matrix_row_t current_matrix[], uint8_t current_row)
|
|||||||
return (last_row_value != current_matrix[current_row]);
|
return (last_row_value != current_matrix[current_row]);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static bool read_encoder_switches(matrix_row_t current_matrix[], uint8_t current_row) {
|
||||||
|
// Store last value of row prior to reading
|
||||||
|
matrix_row_t last_row_value = current_matrix[current_row];
|
||||||
|
|
||||||
|
// Clear data in matrix row
|
||||||
|
current_matrix[current_row] = 0;
|
||||||
|
|
||||||
|
// Populate the matrix row with the state of the encoder
|
||||||
|
current_matrix[current_row] |= gpio_read_pin(SWITCH_1) ? (1 << 0) : 0;
|
||||||
|
current_matrix[current_row] |= gpio_read_pin(SWITCH_2) ? (1 << 1) : 0;
|
||||||
|
|
||||||
|
return (last_row_value != current_matrix[current_row]);
|
||||||
|
}
|
||||||
|
|
||||||
void matrix_init_custom(void) {
|
void matrix_init_custom(void) {
|
||||||
// initialize key pins
|
// initialize key pins
|
||||||
@@ -84,42 +92,16 @@ void matrix_init_custom(void) {
|
|||||||
init_pins();
|
init_pins();
|
||||||
}
|
}
|
||||||
|
|
||||||
bool matrix_scan_custom(void) {
|
bool matrix_scan_custom(matrix_row_t current_matrix[]) {
|
||||||
bool changed = false;
|
bool changed = false;
|
||||||
|
|
||||||
// Set row, read cols
|
// Set row, read cols
|
||||||
for (uint8_t current_row = 0; current_row < MATRIX_ROWS; current_row++) {
|
for (uint8_t current_row = 0; current_row < MATRIX_ROWS - 1; current_row++) {
|
||||||
changed |= read_cols_on_row(raw_matrix, current_row);
|
changed |= read_cols_on_row(current_matrix, current_row);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Read encoder switches, already debounced
|
// Read encoder switches, already debounced
|
||||||
changed |= read_encoder_switches(matrix, 4);
|
changed |= read_encoder_switches(current_matrix, 4);
|
||||||
|
|
||||||
return changed;
|
return changed;
|
||||||
}
|
}
|
||||||
|
|
||||||
static bool read_encoder_switches(matrix_row_t current_matrix[], uint8_t current_row) {
|
|
||||||
// Store last value of row prior to reading
|
|
||||||
matrix_row_t last_row_value = current_matrix[current_row];
|
|
||||||
|
|
||||||
// Clear data in matrix row
|
|
||||||
current_matrix[current_row] = 0;
|
|
||||||
|
|
||||||
// Debounce the encoder buttons using a shift register
|
|
||||||
static uint8_t btn_1_array;
|
|
||||||
static uint8_t btn_2_array;
|
|
||||||
bool btn_1_rise = 0;
|
|
||||||
bool btn_2_rise = 0;
|
|
||||||
btn_1_array <<= 1;
|
|
||||||
btn_2_array <<= 1;
|
|
||||||
btn_1_array |= gpio_read_pin(SWITCH_1);
|
|
||||||
btn_2_array |= gpio_read_pin(SWITCH_2);
|
|
||||||
(btn_1_array == 0b01111111) ? (btn_1_rise = 1) : (btn_1_rise = 0);
|
|
||||||
(btn_2_array == 0b01111111) ? (btn_2_rise = 1) : (btn_2_rise = 0);
|
|
||||||
|
|
||||||
// Populate the matrix row with the state of the encoder
|
|
||||||
current_matrix[current_row] |= btn_1_rise ? (1 << 0) : 0;
|
|
||||||
current_matrix[current_row] |= btn_2_rise ? (1 << 1) : 0;
|
|
||||||
|
|
||||||
return (last_row_value != current_matrix[current_row]);
|
|
||||||
}
|
|
||||||
|
|||||||
@@ -14,28 +14,22 @@ GNU General Public License for more details.
|
|||||||
You should have received a copy of the GNU General Public License
|
You should have received a copy of the GNU General Public License
|
||||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
#include "wait.h"
|
|
||||||
#include "util.h"
|
|
||||||
#include "matrix.h"
|
#include "matrix.h"
|
||||||
|
|
||||||
// Encoder things
|
// Encoder things
|
||||||
#define ENC_SW F7
|
#define ENC_SW F7
|
||||||
static bool read_encoder_switches(matrix_row_t current_matrix[], uint8_t current_row);
|
|
||||||
|
|
||||||
static const pin_t row_pins[MATRIX_ROWS] = MATRIX_ROW_PINS;
|
static const pin_t row_pins[MATRIX_ROWS] = MATRIX_ROW_PINS;
|
||||||
static const pin_t col_pins[MATRIX_COLS] = MATRIX_COL_PINS;
|
static const pin_t col_pins[MATRIX_COLS] = MATRIX_COL_PINS;
|
||||||
|
|
||||||
/* matrix state(1:on, 0:off) */
|
|
||||||
extern matrix_row_t raw_matrix[MATRIX_ROWS]; // raw values
|
|
||||||
extern matrix_row_t matrix[MATRIX_ROWS]; // debounced values
|
|
||||||
|
|
||||||
|
|
||||||
static void select_row(uint8_t row) {
|
static void select_row(uint8_t row) {
|
||||||
gpio_set_pin_output(row_pins[row]);
|
gpio_set_pin_output(row_pins[row]);
|
||||||
gpio_write_pin_low(row_pins[row]);
|
gpio_write_pin_low(row_pins[row]);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void unselect_row(uint8_t row) { gpio_set_pin_input_high(row_pins[row]); }
|
static void unselect_row(uint8_t row) {
|
||||||
|
gpio_set_pin_input_high(row_pins[row]);
|
||||||
|
}
|
||||||
|
|
||||||
static void unselect_rows(void) {
|
static void unselect_rows(void) {
|
||||||
for (uint8_t x = 0; x < MATRIX_ROWS; x++) {
|
for (uint8_t x = 0; x < MATRIX_ROWS; x++) {
|
||||||
@@ -57,9 +51,9 @@ static bool read_cols_on_row(matrix_row_t current_matrix[], uint8_t current_row)
|
|||||||
// Clear data in matrix row
|
// Clear data in matrix row
|
||||||
current_matrix[current_row] = 0;
|
current_matrix[current_row] = 0;
|
||||||
|
|
||||||
// Select row and wait for row selecton to stabilize
|
// Select row and wait for row selection to stabilize
|
||||||
select_row(current_row);
|
select_row(current_row);
|
||||||
wait_us(30);
|
matrix_io_delay();
|
||||||
|
|
||||||
// For each col...
|
// For each col...
|
||||||
for (uint8_t col_index = 0; col_index < MATRIX_COLS; col_index++) {
|
for (uint8_t col_index = 0; col_index < MATRIX_COLS; col_index++) {
|
||||||
@@ -76,27 +70,6 @@ static bool read_cols_on_row(matrix_row_t current_matrix[], uint8_t current_row)
|
|||||||
return (last_row_value != current_matrix[current_row]);
|
return (last_row_value != current_matrix[current_row]);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
void matrix_init_custom(void) {
|
|
||||||
// initialize key pins
|
|
||||||
gpio_set_pin_input(ENC_SW);
|
|
||||||
init_pins();
|
|
||||||
}
|
|
||||||
|
|
||||||
bool matrix_scan_custom(void) {
|
|
||||||
bool changed = false;
|
|
||||||
|
|
||||||
// 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);
|
|
||||||
}
|
|
||||||
|
|
||||||
// Read encoder switches, already debounced
|
|
||||||
changed |= read_encoder_switches(matrix, 2);
|
|
||||||
|
|
||||||
return changed;
|
|
||||||
}
|
|
||||||
|
|
||||||
static bool read_encoder_switches(matrix_row_t current_matrix[], uint8_t current_row) {
|
static bool read_encoder_switches(matrix_row_t current_matrix[], uint8_t current_row) {
|
||||||
// Store last value of row prior to reading
|
// Store last value of row prior to reading
|
||||||
matrix_row_t last_row_value = current_matrix[current_row];
|
matrix_row_t last_row_value = current_matrix[current_row];
|
||||||
@@ -104,15 +77,28 @@ static bool read_encoder_switches(matrix_row_t current_matrix[], uint8_t current
|
|||||||
// Clear data in matrix row
|
// Clear data in matrix row
|
||||||
current_matrix[current_row] = 0;
|
current_matrix[current_row] = 0;
|
||||||
|
|
||||||
// Debounce the encoder buttons using a shift register
|
|
||||||
static uint8_t btn_1_array;
|
|
||||||
bool btn_1_pressed = 0;
|
|
||||||
btn_1_array <<= 1;
|
|
||||||
btn_1_array |= gpio_read_pin(ENC_SW);
|
|
||||||
(btn_1_array == 0b11111111) ? (btn_1_pressed = 1) : (btn_1_pressed = 0);
|
|
||||||
|
|
||||||
// Populate the matrix row with the state of the encoder
|
// Populate the matrix row with the state of the encoder
|
||||||
current_matrix[current_row] |= btn_1_pressed ? (1 << 0) : 0;
|
current_matrix[current_row] |= gpio_read_pin(ENC_SW) ? (1 << 0) : 0;
|
||||||
|
|
||||||
return (last_row_value != current_matrix[current_row]);
|
return (last_row_value != current_matrix[current_row]);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void matrix_init_custom(void) {
|
||||||
|
// initialize key pins
|
||||||
|
gpio_set_pin_input(ENC_SW);
|
||||||
|
init_pins();
|
||||||
|
}
|
||||||
|
|
||||||
|
bool matrix_scan_custom(matrix_row_t current_matrix[]) {
|
||||||
|
bool changed = false;
|
||||||
|
|
||||||
|
// Set row, read cols
|
||||||
|
for (uint8_t current_row = 0; current_row < MATRIX_ROWS - 1; current_row++) {
|
||||||
|
changed |= read_cols_on_row(current_matrix, current_row);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Read encoder switches, already debounced
|
||||||
|
changed |= read_encoder_switches(current_matrix, 2);
|
||||||
|
|
||||||
|
return changed;
|
||||||
|
}
|
||||||
|
|||||||
@@ -15,14 +15,10 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
#include "matrix.h"
|
#include "matrix.h"
|
||||||
#include "wait.h"
|
|
||||||
|
|
||||||
static const pin_t row_pins[MATRIX_ROWS] = MATRIX_ROW_PINS;
|
static const pin_t row_pins[MATRIX_ROWS] = MATRIX_ROW_PINS;
|
||||||
static const pin_t col_pins[MATRIX_COLS] = MATRIX_COL_PINS;
|
static const pin_t col_pins[MATRIX_COLS] = MATRIX_COL_PINS;
|
||||||
|
|
||||||
extern matrix_row_t raw_matrix[MATRIX_ROWS]; // raw values
|
|
||||||
extern matrix_row_t matrix[MATRIX_ROWS]; // debounced values
|
|
||||||
|
|
||||||
static void select_row(uint8_t row) {
|
static void select_row(uint8_t row) {
|
||||||
gpio_set_pin_output(row_pins[row]);
|
gpio_set_pin_output(row_pins[row]);
|
||||||
gpio_write_pin_low(row_pins[row]);
|
gpio_write_pin_low(row_pins[row]);
|
||||||
@@ -59,7 +55,7 @@ static bool read_cols_on_row(matrix_row_t current_matrix[], uint8_t current_row)
|
|||||||
current_matrix[current_row] = 0;
|
current_matrix[current_row] = 0;
|
||||||
|
|
||||||
select_row(current_row);
|
select_row(current_row);
|
||||||
wait_us(30);
|
matrix_io_delay();
|
||||||
|
|
||||||
for (uint8_t col_index = 0; col_index < MATRIX_COLS; col_index++) {
|
for (uint8_t col_index = 0; col_index < MATRIX_COLS; col_index++) {
|
||||||
uint8_t pin_state = gpio_read_pin(col_pins[col_index]);
|
uint8_t pin_state = gpio_read_pin(col_pins[col_index]);
|
||||||
@@ -101,14 +97,14 @@ void matrix_init_custom(void) {
|
|||||||
init_pins();
|
init_pins();
|
||||||
}
|
}
|
||||||
|
|
||||||
bool matrix_scan_custom(void) {
|
bool matrix_scan_custom(matrix_row_t current_matrix[]) {
|
||||||
bool changed = false;
|
bool changed = false;
|
||||||
|
|
||||||
for (uint8_t current_row = 0; current_row < MATRIX_ROWS; current_row++) {
|
for (uint8_t current_row = 0; current_row < MATRIX_ROWS; current_row++) {
|
||||||
changed |= read_cols_on_row(raw_matrix, current_row);
|
changed |= read_cols_on_row(current_matrix, current_row);
|
||||||
}
|
}
|
||||||
|
|
||||||
changed |= read_encoder_switches(raw_matrix);
|
changed |= read_encoder_switches(current_matrix);
|
||||||
|
|
||||||
return changed;
|
return changed;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user