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>
|
2021-06-09 09:19:42 +02:00
|
|
|
#include <string.h>
|
2015-08-21 16:46:53 +02:00
|
|
|
#include "util.h"
|
|
|
|
#include "matrix.h"
|
2019-01-17 19:08:14 +01:00
|
|
|
#include "debounce.h"
|
2023-07-16 15:42:56 +02:00
|
|
|
#include "atomic_util.h"
|
|
|
|
|
2021-07-11 23:31:35 +02:00
|
|
|
#ifdef SPLIT_KEYBOARD
|
|
|
|
# include "split_common/split_util.h"
|
|
|
|
# include "split_common/transactions.h"
|
|
|
|
|
|
|
|
# define ROWS_PER_HAND (MATRIX_ROWS / 2)
|
|
|
|
#else
|
|
|
|
# define ROWS_PER_HAND (MATRIX_ROWS)
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef DIRECT_PINS_RIGHT
|
|
|
|
# define SPLIT_MUTABLE
|
|
|
|
#else
|
|
|
|
# define SPLIT_MUTABLE const
|
|
|
|
#endif
|
|
|
|
#ifdef MATRIX_ROW_PINS_RIGHT
|
|
|
|
# define SPLIT_MUTABLE_ROW
|
|
|
|
#else
|
|
|
|
# define SPLIT_MUTABLE_ROW const
|
|
|
|
#endif
|
|
|
|
#ifdef MATRIX_COL_PINS_RIGHT
|
|
|
|
# define SPLIT_MUTABLE_COL
|
|
|
|
#else
|
|
|
|
# define SPLIT_MUTABLE_COL const
|
|
|
|
#endif
|
2016-10-29 23:12:58 +02:00
|
|
|
|
2022-12-08 17:09:01 +01:00
|
|
|
#ifndef MATRIX_INPUT_PRESSED_STATE
|
|
|
|
# define MATRIX_INPUT_PRESSED_STATE 0
|
|
|
|
#endif
|
|
|
|
|
2019-04-11 20:51:55 +02:00
|
|
|
#ifdef DIRECT_PINS
|
2022-02-11 20:01:16 +01:00
|
|
|
static SPLIT_MUTABLE pin_t direct_pins[ROWS_PER_HAND][MATRIX_COLS] = DIRECT_PINS;
|
2019-04-11 20:51:55 +02:00
|
|
|
#elif (DIODE_DIRECTION == ROW2COL) || (DIODE_DIRECTION == COL2ROW)
|
2021-06-09 09:19:42 +02:00
|
|
|
# ifdef MATRIX_ROW_PINS
|
2022-02-11 20:01:16 +01:00
|
|
|
static SPLIT_MUTABLE_ROW pin_t row_pins[ROWS_PER_HAND] = MATRIX_ROW_PINS;
|
2022-02-12 19:29:31 +01:00
|
|
|
# endif // MATRIX_ROW_PINS
|
2021-06-09 09:19:42 +02:00
|
|
|
# ifdef MATRIX_COL_PINS
|
2022-02-11 20:01:16 +01:00
|
|
|
static SPLIT_MUTABLE_COL pin_t col_pins[MATRIX_COLS] = MATRIX_COL_PINS;
|
2022-02-12 19:29:31 +01:00
|
|
|
# endif // 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) */
|
2022-02-12 19:29:31 +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
|
|
|
|
2021-07-11 23:31:35 +02:00
|
|
|
#ifdef SPLIT_KEYBOARD
|
|
|
|
// row offsets for each hand
|
2021-12-27 11:03:40 +01:00
|
|
|
extern uint8_t thisHand, thatHand;
|
2021-07-11 23:31:35 +02:00
|
|
|
#endif
|
|
|
|
|
2021-06-09 09:19:42 +02:00
|
|
|
// user-defined overridable functions
|
|
|
|
__attribute__((weak)) void matrix_init_pins(void);
|
|
|
|
__attribute__((weak)) void matrix_read_cols_on_row(matrix_row_t current_matrix[], uint8_t current_row);
|
2021-10-27 05:01:57 +02:00
|
|
|
__attribute__((weak)) void matrix_read_rows_on_col(matrix_row_t current_matrix[], uint8_t current_col, matrix_row_t row_shifter);
|
2021-06-09 09:19:42 +02:00
|
|
|
|
2020-11-28 21:02:18 +01:00
|
|
|
static inline void setPinOutput_writeLow(pin_t pin) {
|
|
|
|
ATOMIC_BLOCK_FORCEON {
|
2024-02-18 07:08:27 +01:00
|
|
|
gpio_set_pin_output(pin);
|
|
|
|
gpio_write_pin_low(pin);
|
2020-11-28 21:02:18 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-02-09 05:50:13 +01:00
|
|
|
static inline void setPinOutput_writeHigh(pin_t pin) {
|
|
|
|
ATOMIC_BLOCK_FORCEON {
|
2024-02-18 07:08:27 +01:00
|
|
|
gpio_set_pin_output(pin);
|
|
|
|
gpio_write_pin_high(pin);
|
2022-02-09 05:50:13 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-11-28 21:02:18 +01:00
|
|
|
static inline void setPinInputHigh_atomic(pin_t pin) {
|
2022-02-12 19:29:31 +01:00
|
|
|
ATOMIC_BLOCK_FORCEON {
|
2024-02-18 07:08:27 +01:00
|
|
|
gpio_set_pin_input_high(pin);
|
2022-02-12 19:29:31 +01:00
|
|
|
}
|
2020-11-28 21:02:18 +01:00
|
|
|
}
|
|
|
|
|
2021-07-03 09:20:11 +02:00
|
|
|
static inline uint8_t readMatrixPin(pin_t pin) {
|
|
|
|
if (pin != NO_PIN) {
|
2024-02-18 07:08:27 +01:00
|
|
|
return (gpio_read_pin(pin) == MATRIX_INPUT_PRESSED_STATE) ? 0 : 1;
|
2021-07-03 09:20:11 +02:00
|
|
|
} else {
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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
|
|
|
|
|
2021-06-01 07:10:39 +02:00
|
|
|
__attribute__((weak)) void matrix_init_pins(void) {
|
2022-02-11 20:01:16 +01:00
|
|
|
for (int row = 0; row < ROWS_PER_HAND; row++) {
|
2019-08-30 20:19:03 +02:00
|
|
|
for (int col = 0; col < MATRIX_COLS; col++) {
|
|
|
|
pin_t pin = direct_pins[row][col];
|
|
|
|
if (pin != NO_PIN) {
|
2024-02-18 07:08:27 +01:00
|
|
|
gpio_set_pin_input_high(pin);
|
2019-08-30 20:19:03 +02:00
|
|
|
}
|
|
|
|
}
|
2019-04-11 20:51:55 +02:00
|
|
|
}
|
|
|
|
}
|
2016-10-28 21:21:38 +02:00
|
|
|
|
2021-06-09 09:19:42 +02:00
|
|
|
__attribute__((weak)) void matrix_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
|
|
|
|
2021-10-27 05:01:57 +02:00
|
|
|
matrix_row_t row_shifter = MATRIX_ROW_SHIFTER;
|
|
|
|
for (uint8_t col_index = 0; col_index < MATRIX_COLS; col_index++, row_shifter <<= 1) {
|
2019-08-30 20:19:03 +02:00
|
|
|
pin_t pin = direct_pins[current_row][col_index];
|
2022-12-08 17:09:01 +01:00
|
|
|
current_row_value |= readMatrixPin(pin) ? 0 : row_shifter;
|
2019-04-11 20:51:55 +02:00
|
|
|
}
|
|
|
|
|
2021-06-09 09:19:42 +02:00
|
|
|
// Update the matrix
|
|
|
|
current_matrix[current_row] = current_row_value;
|
2019-04-11 20:51:55 +02:00
|
|
|
}
|
|
|
|
|
2020-01-19 04:11:57 +01:00
|
|
|
#elif defined(DIODE_DIRECTION)
|
2021-06-09 09:19:42 +02:00
|
|
|
# if defined(MATRIX_ROW_PINS) && defined(MATRIX_COL_PINS)
|
|
|
|
# if (DIODE_DIRECTION == COL2ROW)
|
2019-04-11 20:51:55 +02:00
|
|
|
|
2021-07-03 09:20:11 +02:00
|
|
|
static bool select_row(uint8_t row) {
|
|
|
|
pin_t pin = row_pins[row];
|
|
|
|
if (pin != NO_PIN) {
|
|
|
|
setPinOutput_writeLow(pin);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
2019-04-11 20:51:55 +02:00
|
|
|
|
2021-07-03 09:20:11 +02:00
|
|
|
static void unselect_row(uint8_t row) {
|
|
|
|
pin_t pin = row_pins[row];
|
|
|
|
if (pin != NO_PIN) {
|
2022-02-09 05:50:13 +01:00
|
|
|
# ifdef MATRIX_UNSELECT_DRIVE_HIGH
|
|
|
|
setPinOutput_writeHigh(pin);
|
|
|
|
# else
|
2021-07-03 09:20:11 +02:00
|
|
|
setPinInputHigh_atomic(pin);
|
2022-02-09 05:50:13 +01:00
|
|
|
# endif
|
2021-07-03 09:20:11 +02:00
|
|
|
}
|
|
|
|
}
|
2019-04-11 20:51:55 +02:00
|
|
|
|
2019-08-30 20:19:03 +02:00
|
|
|
static void unselect_rows(void) {
|
2021-07-12 17:43:05 +02:00
|
|
|
for (uint8_t x = 0; x < ROWS_PER_HAND; x++) {
|
2021-07-03 09:20:11 +02:00
|
|
|
unselect_row(x);
|
2016-07-04 17:45:58 +02:00
|
|
|
}
|
2015-08-21 16:46:53 +02:00
|
|
|
}
|
|
|
|
|
2021-06-01 07:10:39 +02:00
|
|
|
__attribute__((weak)) void matrix_init_pins(void) {
|
2019-08-30 20:19:03 +02:00
|
|
|
unselect_rows();
|
|
|
|
for (uint8_t x = 0; x < MATRIX_COLS; x++) {
|
2021-07-03 09:20:11 +02:00
|
|
|
if (col_pins[x] != NO_PIN) {
|
|
|
|
setPinInputHigh_atomic(col_pins[x]);
|
|
|
|
}
|
2019-08-30 20:19:03 +02:00
|
|
|
}
|
2019-04-11 20:51:55 +02:00
|
|
|
}
|
|
|
|
|
2021-06-09 09:19:42 +02:00
|
|
|
__attribute__((weak)) void matrix_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
|
|
|
|
2022-02-12 19:29:31 +01:00
|
|
|
if (!select_row(current_row)) { // Select row
|
|
|
|
return; // skip NO_PIN row
|
2021-07-03 09:20:11 +02:00
|
|
|
}
|
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...
|
2021-10-27 05:01:57 +02:00
|
|
|
matrix_row_t row_shifter = MATRIX_ROW_SHIFTER;
|
|
|
|
for (uint8_t col_index = 0; col_index < MATRIX_COLS; col_index++, row_shifter <<= 1) {
|
2021-07-03 09:20:11 +02:00
|
|
|
uint8_t pin_state = readMatrixPin(col_pins[col_index]);
|
2016-10-28 23:24:20 +02:00
|
|
|
|
|
|
|
// Populate the matrix row with the state of the col pin
|
2021-10-27 05:01:57 +02:00
|
|
|
current_row_value |= pin_state ? 0 : row_shifter;
|
2016-10-28 23:24:20 +02:00
|
|
|
}
|
2016-10-29 17:39:03 +02:00
|
|
|
|
|
|
|
// Unselect row
|
|
|
|
unselect_row(current_row);
|
2022-02-12 19:29:31 +01:00
|
|
|
matrix_output_unselect_delay(current_row, current_row_value != 0); // wait for all Col signals to go HIGH
|
2016-10-29 23:12:58 +02:00
|
|
|
|
2021-06-09 09:19:42 +02:00
|
|
|
// Update the matrix
|
|
|
|
current_matrix[current_row] = current_row_value;
|
2015-08-21 16:46:53 +02:00
|
|
|
}
|
|
|
|
|
2021-06-09 09:19:42 +02:00
|
|
|
# elif (DIODE_DIRECTION == ROW2COL)
|
2019-04-11 20:51:55 +02:00
|
|
|
|
2021-07-03 09:20:11 +02:00
|
|
|
static bool select_col(uint8_t col) {
|
|
|
|
pin_t pin = col_pins[col];
|
|
|
|
if (pin != NO_PIN) {
|
|
|
|
setPinOutput_writeLow(pin);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
2016-10-28 21:21:38 +02:00
|
|
|
|
2021-07-03 09:20:11 +02:00
|
|
|
static void unselect_col(uint8_t col) {
|
|
|
|
pin_t pin = col_pins[col];
|
|
|
|
if (pin != NO_PIN) {
|
2022-02-09 05:50:13 +01:00
|
|
|
# ifdef MATRIX_UNSELECT_DRIVE_HIGH
|
|
|
|
setPinOutput_writeHigh(pin);
|
|
|
|
# else
|
2021-07-03 09:20:11 +02:00
|
|
|
setPinInputHigh_atomic(pin);
|
2022-02-09 05:50:13 +01:00
|
|
|
# endif
|
2021-07-03 09:20:11 +02:00
|
|
|
}
|
|
|
|
}
|
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++) {
|
2021-07-03 09:20:11 +02:00
|
|
|
unselect_col(x);
|
2016-05-24 05:42:21 +02:00
|
|
|
}
|
2016-07-04 17:45:58 +02:00
|
|
|
}
|
|
|
|
|
2021-06-01 07:10:39 +02:00
|
|
|
__attribute__((weak)) void matrix_init_pins(void) {
|
2019-08-30 20:19:03 +02:00
|
|
|
unselect_cols();
|
2021-07-12 17:43:05 +02:00
|
|
|
for (uint8_t x = 0; x < ROWS_PER_HAND; x++) {
|
2021-07-03 09:20:11 +02:00
|
|
|
if (row_pins[x] != NO_PIN) {
|
|
|
|
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
|
|
|
|
2021-10-27 05:01:57 +02:00
|
|
|
__attribute__((weak)) void matrix_read_rows_on_col(matrix_row_t current_matrix[], uint8_t current_col, matrix_row_t row_shifter) {
|
2021-07-13 09:50:25 +02:00
|
|
|
bool key_pressed = false;
|
|
|
|
|
2021-01-13 02:46:22 +01:00
|
|
|
// Select col
|
2022-02-12 19:29:31 +01:00
|
|
|
if (!select_col(current_col)) { // select col
|
|
|
|
return; // skip NO_PIN col
|
2021-07-03 09:20:11 +02:00
|
|
|
}
|
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...
|
2021-07-11 23:31:35 +02:00
|
|
|
for (uint8_t row_index = 0; row_index < ROWS_PER_HAND; row_index++) {
|
2016-10-29 17:39:03 +02:00
|
|
|
// Check row pin state
|
2021-07-03 09:20:11 +02:00
|
|
|
if (readMatrixPin(row_pins[row_index]) == 0) {
|
2016-10-29 17:39:03 +02:00
|
|
|
// Pin LO, set col bit
|
2021-10-27 05:01:57 +02:00
|
|
|
current_matrix[row_index] |= row_shifter;
|
2021-07-13 09:50:25 +02:00
|
|
|
key_pressed = true;
|
2019-08-30 20:19:03 +02:00
|
|
|
} else {
|
2016-10-29 17:39:03 +02:00
|
|
|
// Pin HI, clear col bit
|
2021-10-27 05:01:57 +02:00
|
|
|
current_matrix[row_index] &= ~row_shifter;
|
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);
|
2022-02-12 19:29:31 +01:00
|
|
|
matrix_output_unselect_delay(current_col, key_pressed); // wait for all Row signals to go HIGH
|
2016-10-28 21:21:38 +02:00
|
|
|
}
|
|
|
|
|
2021-06-09 09:19:42 +02:00
|
|
|
# else
|
|
|
|
# error DIODE_DIRECTION must be one of COL2ROW or ROW2COL!
|
|
|
|
# endif
|
2022-02-12 19:29:31 +01:00
|
|
|
# endif // defined(MATRIX_ROW_PINS) && defined(MATRIX_COL_PINS)
|
2020-01-19 04:11:57 +01:00
|
|
|
#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) {
|
2021-07-11 23:31:35 +02:00
|
|
|
#ifdef SPLIT_KEYBOARD
|
|
|
|
// Set pinout for right half if pinout for that half is defined
|
|
|
|
if (!isLeftHand) {
|
|
|
|
# ifdef DIRECT_PINS_RIGHT
|
2022-02-11 20:01:16 +01:00
|
|
|
const pin_t direct_pins_right[ROWS_PER_HAND][MATRIX_COLS] = DIRECT_PINS_RIGHT;
|
|
|
|
for (uint8_t i = 0; i < ROWS_PER_HAND; i++) {
|
2021-07-11 23:31:35 +02:00
|
|
|
for (uint8_t j = 0; j < MATRIX_COLS; j++) {
|
|
|
|
direct_pins[i][j] = direct_pins_right[i][j];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
# endif
|
|
|
|
# ifdef MATRIX_ROW_PINS_RIGHT
|
2022-02-11 20:01:16 +01:00
|
|
|
const pin_t row_pins_right[ROWS_PER_HAND] = MATRIX_ROW_PINS_RIGHT;
|
|
|
|
for (uint8_t i = 0; i < ROWS_PER_HAND; i++) {
|
2021-07-11 23:31:35 +02:00
|
|
|
row_pins[i] = row_pins_right[i];
|
|
|
|
}
|
|
|
|
# endif
|
|
|
|
# ifdef MATRIX_COL_PINS_RIGHT
|
|
|
|
const pin_t col_pins_right[MATRIX_COLS] = MATRIX_COL_PINS_RIGHT;
|
|
|
|
for (uint8_t i = 0; i < MATRIX_COLS; i++) {
|
|
|
|
col_pins[i] = col_pins_right[i];
|
|
|
|
}
|
|
|
|
# endif
|
|
|
|
}
|
|
|
|
|
|
|
|
thisHand = isLeftHand ? 0 : (ROWS_PER_HAND);
|
|
|
|
thatHand = ROWS_PER_HAND - thisHand;
|
|
|
|
#endif
|
|
|
|
|
2019-04-11 20:51:55 +02:00
|
|
|
// initialize key pins
|
2021-06-01 07:10:39 +02:00
|
|
|
matrix_init_pins();
|
2019-04-11 20:51:55 +02:00
|
|
|
|
|
|
|
// initialize matrix state: all keys off
|
2021-09-18 09:29:22 +02:00
|
|
|
memset(matrix, 0, sizeof(matrix));
|
|
|
|
memset(raw_matrix, 0, sizeof(raw_matrix));
|
2019-04-11 20:51:55 +02:00
|
|
|
|
2021-07-11 23:31:35 +02:00
|
|
|
debounce_init(ROWS_PER_HAND);
|
2019-04-11 20:51:55 +02:00
|
|
|
|
2023-02-11 04:47:17 +01:00
|
|
|
matrix_init_kb();
|
2016-10-28 21:21:38 +02:00
|
|
|
}
|
|
|
|
|
2021-07-11 23:31:35 +02:00
|
|
|
#ifdef SPLIT_KEYBOARD
|
Make solo half of split keyboards (more) usable. (#13523)
* Make solo half of split keyboards (more) usable.
Using only one half of a split keyboard (that's using the split_common
framework to communicate) is not a great experience, since several read
timeouts per scan cycle cause an unusably slow scan rate.
This change blocks all split communication attempts for 500 ms
(configurable) after an error occurs, causing the scan rate to become at
least _more_ usable, but might need some tweaking to work fully on most
keyboards. One read timeout still needs to occur after the 500 ms has
passed, and if that timeout isn't low enough, some scan cycles may still
be too slow.
* Fix lint complaint.
* Require 25 consecutive comm errors to see comms as disconnected.
The number of max errors can be overridden by defining
`SPLIT_MAX_CONNECTION_ERRORS`.
* Add comments to new defines, and ability to disable disconnection check.
Also increase `SPLIT_MAX_CONNECTION_ERRORS` to 40, since it's divisible
by most relevant numbers for the description.
* Make lint happy ...again
* Only update `connection_check_timer` when needed.
* Add new defines to split keyboard documentation.
* Move connection timeout logic to transport.c, add `is_transport_connected`.
* Use split_common disconnection logic in matrix.c.
Instead of doing more or less the same thing twice.
* Move disconnection logic to `transport_master`.
Is a cleaner implementation, and causes the scan rate while disconnected
to increase instead of decrease.
* Lint fixes.
* Lower default `SERIAL_USART_TIMEOUT` to 20 ms.
The read timeout must be low enough to not cause exessively long scan
cycles when using a solo split half. 10 ms was determined from testing
to work fine even with the slowest defined baudrate of 19200 (5 ms was
too low for that case), so 20 ms should be fine for most cases.
* Remove `SERIAL_USART_TIMEOUT` from ergodox_infinity/config.h
Was somewhat mistakenly included in an earlier PR.
* Fix building with `USE_I2C`.
* Reduce built firmware size.
Not really sure why this works, the idea was taken from tzarc's work on
split disconnection.
* Tweak and improve opt-out for split disconnection logic.
There are now two ways to opt out from this feature:
* Set `SPLIT_MAX_CONNECTION_ERRORS` to 0. This will completely disable
the connection status checks (also affects the slave matrix reset logic in
matrix.c, though).
* Set `SPLIT_CONNECTION_CHECK_TIMEOUT` to 0. This will only disable the
communication throttling while disconnected. Will make the firmware
smaller.
* Make split disconnection logic work with custom transports.
Includes a fallback implementation for keyboards using a custom
split_util.c but not a custom matrix.c (currently no such keyboard seems
to be merged, though).
* Remove unnecessary include of timer.h
Co-authored-by: Joel Challis <git@zvecr.com>
Co-authored-by: Joel Challis <git@zvecr.com>
2021-08-22 02:51:17 +02:00
|
|
|
// Fallback implementation for keyboards not using the standard split_util.c
|
|
|
|
__attribute__((weak)) bool transport_master_if_connected(matrix_row_t master_matrix[], matrix_row_t slave_matrix[]) {
|
|
|
|
transport_master(master_matrix, slave_matrix);
|
2022-02-12 19:29:31 +01:00
|
|
|
return true; // Treat the transport as always connected
|
Make solo half of split keyboards (more) usable. (#13523)
* Make solo half of split keyboards (more) usable.
Using only one half of a split keyboard (that's using the split_common
framework to communicate) is not a great experience, since several read
timeouts per scan cycle cause an unusably slow scan rate.
This change blocks all split communication attempts for 500 ms
(configurable) after an error occurs, causing the scan rate to become at
least _more_ usable, but might need some tweaking to work fully on most
keyboards. One read timeout still needs to occur after the 500 ms has
passed, and if that timeout isn't low enough, some scan cycles may still
be too slow.
* Fix lint complaint.
* Require 25 consecutive comm errors to see comms as disconnected.
The number of max errors can be overridden by defining
`SPLIT_MAX_CONNECTION_ERRORS`.
* Add comments to new defines, and ability to disable disconnection check.
Also increase `SPLIT_MAX_CONNECTION_ERRORS` to 40, since it's divisible
by most relevant numbers for the description.
* Make lint happy ...again
* Only update `connection_check_timer` when needed.
* Add new defines to split keyboard documentation.
* Move connection timeout logic to transport.c, add `is_transport_connected`.
* Use split_common disconnection logic in matrix.c.
Instead of doing more or less the same thing twice.
* Move disconnection logic to `transport_master`.
Is a cleaner implementation, and causes the scan rate while disconnected
to increase instead of decrease.
* Lint fixes.
* Lower default `SERIAL_USART_TIMEOUT` to 20 ms.
The read timeout must be low enough to not cause exessively long scan
cycles when using a solo split half. 10 ms was determined from testing
to work fine even with the slowest defined baudrate of 19200 (5 ms was
too low for that case), so 20 ms should be fine for most cases.
* Remove `SERIAL_USART_TIMEOUT` from ergodox_infinity/config.h
Was somewhat mistakenly included in an earlier PR.
* Fix building with `USE_I2C`.
* Reduce built firmware size.
Not really sure why this works, the idea was taken from tzarc's work on
split disconnection.
* Tweak and improve opt-out for split disconnection logic.
There are now two ways to opt out from this feature:
* Set `SPLIT_MAX_CONNECTION_ERRORS` to 0. This will completely disable
the connection status checks (also affects the slave matrix reset logic in
matrix.c, though).
* Set `SPLIT_CONNECTION_CHECK_TIMEOUT` to 0. This will only disable the
communication throttling while disconnected. Will make the firmware
smaller.
* Make split disconnection logic work with custom transports.
Includes a fallback implementation for keyboards using a custom
split_util.c but not a custom matrix.c (currently no such keyboard seems
to be merged, though).
* Remove unnecessary include of timer.h
Co-authored-by: Joel Challis <git@zvecr.com>
Co-authored-by: Joel Challis <git@zvecr.com>
2021-08-22 02:51:17 +02:00
|
|
|
}
|
2021-07-11 23:31:35 +02:00
|
|
|
#endif
|
|
|
|
|
2019-08-30 20:19:03 +02:00
|
|
|
uint8_t matrix_scan(void) {
|
2021-06-09 09:19:42 +02:00
|
|
|
matrix_row_t curr_matrix[MATRIX_ROWS] = {0};
|
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
|
2021-07-11 23:31:35 +02:00
|
|
|
for (uint8_t current_row = 0; current_row < ROWS_PER_HAND; current_row++) {
|
2021-06-09 09:19:42 +02:00
|
|
|
matrix_read_cols_on_row(curr_matrix, current_row);
|
2019-08-30 20:19:03 +02:00
|
|
|
}
|
2019-04-11 20:51:55 +02:00
|
|
|
#elif (DIODE_DIRECTION == ROW2COL)
|
2019-08-30 20:19:03 +02:00
|
|
|
// Set col, read rows
|
2021-10-27 05:01:57 +02:00
|
|
|
matrix_row_t row_shifter = MATRIX_ROW_SHIFTER;
|
|
|
|
for (uint8_t current_col = 0; current_col < MATRIX_COLS; current_col++, row_shifter <<= 1) {
|
|
|
|
matrix_read_rows_on_col(curr_matrix, current_col, row_shifter);
|
2019-08-30 20:19:03 +02:00
|
|
|
}
|
2016-10-28 21:21:38 +02:00
|
|
|
#endif
|
2019-04-11 20:51:55 +02:00
|
|
|
|
2021-06-09 09:19:42 +02:00
|
|
|
bool changed = memcmp(raw_matrix, curr_matrix, sizeof(curr_matrix)) != 0;
|
|
|
|
if (changed) memcpy(raw_matrix, curr_matrix, sizeof(curr_matrix));
|
|
|
|
|
2021-07-11 23:31:35 +02:00
|
|
|
#ifdef SPLIT_KEYBOARD
|
2022-07-07 10:00:40 +02:00
|
|
|
changed = debounce(raw_matrix, matrix + thisHand, ROWS_PER_HAND, changed) | matrix_post_scan();
|
2021-07-11 23:31:35 +02:00
|
|
|
#else
|
2022-07-07 10:00:40 +02:00
|
|
|
changed = debounce(raw_matrix, matrix, ROWS_PER_HAND, changed);
|
2023-02-11 04:47:17 +01:00
|
|
|
matrix_scan_kb();
|
2021-07-11 23:31:35 +02:00
|
|
|
#endif
|
2019-08-30 20:19:03 +02:00
|
|
|
return (uint8_t)changed;
|
2019-04-11 20:51:55 +02:00
|
|
|
}
|