Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Make solo half of split keyboards (more) usable. #13523

Merged
merged 20 commits into from
Aug 22, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
0d7b986
Make solo half of split keyboards (more) usable.
firetech Jul 12, 2021
13a70f3
Fix lint complaint.
firetech Jul 12, 2021
ea0f568
Require 25 consecutive comm errors to see comms as disconnected.
firetech Jul 12, 2021
0701839
Add comments to new defines, and ability to disable disconnection check.
firetech Jul 12, 2021
1d1ce1b
Make lint happy ...again
firetech Jul 12, 2021
1e1fb26
Only update `connection_check_timer` when needed.
firetech Jul 12, 2021
a537457
Add new defines to split keyboard documentation.
firetech Jul 12, 2021
1b0d82b
Move connection timeout logic to transport.c, add `is_transport_conne…
firetech Aug 3, 2021
7e5ce48
Use split_common disconnection logic in matrix.c.
firetech Aug 3, 2021
248b78b
Move disconnection logic to `transport_master`.
firetech Aug 4, 2021
5308e99
Lint fixes.
firetech Aug 4, 2021
33e8e9f
Lower default `SERIAL_USART_TIMEOUT` to 20 ms.
firetech Aug 5, 2021
b9c3441
Remove `SERIAL_USART_TIMEOUT` from ergodox_infinity/config.h
firetech Aug 5, 2021
f725e8b
Fix building with `USE_I2C`.
firetech Aug 5, 2021
a6f2ca5
Reduce built firmware size.
firetech Aug 6, 2021
8ba50ea
Tweak and improve opt-out for split disconnection logic.
firetech Aug 6, 2021
ff70626
Make split disconnection logic work with custom transports.
firetech Aug 7, 2021
1250439
Merge remote-tracking branch 'upstream/develop' into split_common_con…
firetech Aug 15, 2021
adf9baf
Merge remote-tracking branch 'upstream/develop' into split_common_con…
firetech Aug 17, 2021
0422030
Remove unnecessary include of timer.h
firetech Aug 20, 2021
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions docs/feature_split_keyboard.md
Original file line number Diff line number Diff line change
Expand Up @@ -203,6 +203,22 @@ If you're having issues with serial communication, you can change this value, as

This sets the maximum number of milliseconds before forcing a synchronization of data from master to slave. Under normal circumstances this sync occurs whenever the data _changes_, for safety a data transfer occurs after this number of milliseconds if no change has been detected since the last sync.

```c
#define SPLIT_MAX_CONNECTION_ERRORS 10
```
This sets the maximum number of failed communication attempts (one per scan cycle) from the master part before it assumes that no slave part is connected. This makes it possible to use a master part without the slave part connected.

Set to 0 to disable the disconnection check altogether.

```c
#define SPLIT_CONNECTION_CHECK_TIMEOUT 500
```
How long (in milliseconds) the master part should block all connection attempts to the slave after the communication has been flagged as disconnected (see `SPLIT_MAX_CONNECTION_ERRORS` above).

One communication attempt will be allowed everytime this amount of time has passed since the last attempt. If that attempt succeeds, the communication is seen as working again.

Set to 0 to disable this throttling of communications while disconnected. This can save you a couple of bytes of firmware size.

```c
#define SPLIT_TRANSPORT_MIRROR
```
Expand Down
6 changes: 3 additions & 3 deletions docs/serial_driver.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ Configure the hardware via your config.h:
// 5: about 19200 baud
#define SERIAL_USART_DRIVER SD1 // USART driver of TX pin. default: SD1
#define SERIAL_USART_TX_PAL_MODE 7 // Pin "alternate function", see the respective datasheet for the appropriate values for your MCU. default: 7
#define SERIAL_USART_TIMEOUT 100 // USART driver timeout. default 100
#define SERIAL_USART_TIMEOUT 20 // USART driver timeout. default 20
```

You must also enable the ChibiOS `SERIAL` feature:
Expand Down Expand Up @@ -105,10 +105,10 @@ Next configure the hardware via your config.h:
// 3: 57600 baud
// 4: 38400 baud
// 5: 19200 baud
#define SERIAL_USART_DRIVER SD1 // USART driver of TX and RX pin. default: SD1
#define SERIAL_USART_DRIVER SD1 // USART driver of TX and RX pin. default: SD1
#define SERIAL_USART_TX_PAL_MODE 7 // Pin "alternate function", see the respective datasheet for the appropriate values for your MCU. default: 7
#define SERIAL_USART_RX_PAL_MODE 7 // Pin "alternate function", see the respective datasheet for the appropriate values for your MCU. default: 7
#define SERIAL_USART_TIMEOUT 100 // USART driver timeout. default 100
#define SERIAL_USART_TIMEOUT 20 // USART driver timeout. default 20
```

You must also enable the ChibiOS `SERIAL` feature:
Expand Down
1 change: 0 additions & 1 deletion keyboards/ergodox_infinity/config.h
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
#define SERIAL_USART_DRIVER SD1 // Only true for the master half
#define SERIAL_USART_CONFIG { (SERIAL_USART_SPEED), } // Only field is speed
#define SERIAL_USART_FULL_DUPLEX
#define SERIAL_USART_TIMEOUT 50

/* number of backlight levels */
#define BACKLIGHT_LEVELS 3
Expand Down
2 changes: 1 addition & 1 deletion platforms/chibios/drivers/serial_usart.h
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@
#endif

#if !defined(SERIAL_USART_TIMEOUT)
# define SERIAL_USART_TIMEOUT 100
# define SERIAL_USART_TIMEOUT 20
#endif

#define HANDSHAKE_MAGIC 7
36 changes: 15 additions & 21 deletions quantum/matrix.c
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
# include "split_common/split_util.h"
# include "split_common/transactions.h"

# ifndef ERROR_DISCONNECT_COUNT
# define ERROR_DISCONNECT_COUNT 5
# endif // ERROR_DISCONNECT_COUNT

# define ROWS_PER_HAND (MATRIX_ROWS / 2)
#else
# define ROWS_PER_HAND (MATRIX_ROWS)
Expand Down Expand Up @@ -307,33 +303,31 @@ void matrix_init(void) {
}

#ifdef SPLIT_KEYBOARD
// 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);
return true; // Treat the transport as always connected
}

bool matrix_post_scan(void) {
bool changed = false;
if (is_keyboard_master()) {
static uint8_t error_count;

matrix_row_t slave_matrix[ROWS_PER_HAND] = {0};
if (!transport_master(matrix + thisHand, slave_matrix)) {
error_count++;

if (error_count > ERROR_DISCONNECT_COUNT) {
// reset other half if disconnected
for (int i = 0; i < ROWS_PER_HAND; ++i) {
matrix[thatHand + i] = 0;
slave_matrix[i] = 0;
}

changed = true;
}
} else {
error_count = 0;

if (transport_master_if_connected(matrix + thisHand, slave_matrix)) {
for (int i = 0; i < ROWS_PER_HAND; ++i) {
if (matrix[thatHand + i] != slave_matrix[i]) {
matrix[thatHand + i] = slave_matrix[i];
changed = true;
firetech marked this conversation as resolved.
Show resolved Hide resolved
}
}
} else {
// reset other half if disconnected
for (int i = 0; i < ROWS_PER_HAND; ++i) {
firetech marked this conversation as resolved.
Show resolved Hide resolved
matrix[thatHand + i] = 0;
slave_matrix[i] = 0;
}

changed = true;
}

matrix_scan_quantum();
Expand Down
51 changes: 51 additions & 0 deletions quantum/split_common/split_util.c
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,21 @@
# define SPLIT_USB_TIMEOUT_POLL 10
#endif

// Max number of consecutive failed communications (one per scan cycle) before the communication is seen as disconnected.
// Set to 0 to disable the disconnection check altogether.
#ifndef SPLIT_MAX_CONNECTION_ERRORS
# define SPLIT_MAX_CONNECTION_ERRORS 10
#endif // SPLIT_MAX_CONNECTION_ERRORS

// How long (in milliseconds) to block all connection attempts after the communication has been flagged as disconnected.
// One communication attempt will be allowed everytime this amount of time has passed since the last attempt. If that attempt succeeds, the communication is seen as working again.
// Set to 0 to disable communication throttling while disconnected
#ifndef SPLIT_CONNECTION_CHECK_TIMEOUT
# define SPLIT_CONNECTION_CHECK_TIMEOUT 500
#endif // SPLIT_CONNECTION_CHECK_TIMEOUT

static uint8_t connection_errors = 0;

volatile bool isLeftHand = true;

#if defined(SPLIT_USB_DETECT)
Expand Down Expand Up @@ -142,3 +157,39 @@ void split_post_init(void) {
transport_slave_init();
}
}

bool is_transport_connected(void) { return connection_errors < SPLIT_MAX_CONNECTION_ERRORS; }

bool transport_master_if_connected(matrix_row_t master_matrix[], matrix_row_t slave_matrix[]) {
#if SPLIT_MAX_CONNECTION_ERRORS > 0 && SPLIT_CONNECTION_CHECK_TIMEOUT > 0
// Throttle transaction attempts if target doesn't seem to be connected
// Without this, a solo half becomes unusable due to constant read timeouts
static uint16_t connection_check_timer = 0;
const bool is_disconnected = !is_transport_connected();
if (is_disconnected && timer_elapsed(connection_check_timer) < SPLIT_CONNECTION_CHECK_TIMEOUT) {
return false;
}
#endif // SPLIT_MAX_CONNECTION_ERRORS > 0 && SPLIT_CONNECTION_CHECK_TIMEOUT > 0

__attribute__((unused)) bool okay = transport_master(master_matrix, slave_matrix);
#if SPLIT_MAX_CONNECTION_ERRORS > 0
if (!okay) {
if (connection_errors < UINT8_MAX) {
connection_errors++;
}
# if SPLIT_CONNECTION_CHECK_TIMEOUT > 0
bool connected = is_transport_connected();
if (!connected) {
connection_check_timer = timer_read();
dprintln("Target disconnected, throttling connection attempts");
}
return connected;
} else if (is_disconnected) {
dprintln("Target connected");
# endif // SPLIT_CONNECTION_CHECK_TIMEOUT > 0
}

connection_errors = 0;
#endif // SPLIT_MAX_CONNECTION_ERRORS > 0
return true;
}
5 changes: 5 additions & 0 deletions quantum/split_common/split_util.h
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,13 @@
#include <stdio.h>
#include <stdlib.h>

#include "matrix.h"

extern volatile bool isLeftHand;

void matrix_master_OLED_init(void);
void split_pre_init(void);
void split_post_init(void);

bool transport_master_if_connected(matrix_row_t master_matrix[], matrix_row_t slave_matrix[]);
bool is_transport_connected(void);
Loading