1
0
Fork 0

Ergodox Infinity: Add EE_HANDS support. (#9527)

Including a guide to set these EEPROM values (in the readme).
This commit is contained in:
Joakim Tufvegren 2020-10-11 02:48:52 +02:00 committed by GitHub
parent a88cfa395b
commit cacf495c91
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 47 additions and 4 deletions

View file

@ -24,6 +24,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
#include "print.h"
#include "debug.h"
#include "matrix.h"
#include "eeconfig.h"
#include "serial_link/system/serial_link.h"
@ -118,8 +119,12 @@ uint8_t matrix_scan(void)
}
uint8_t offset = 0;
#ifdef MASTER_IS_ON_RIGHT
#if (defined(EE_HANDS) || defined(MASTER_IS_ON_RIGHT))
#ifdef EE_HANDS
if (is_serial_link_master() && !eeconfig_read_handedness()) {
#else
if (is_serial_link_master()) {
#endif
offset = MATRIX_ROWS - LOCAL_MATRIX_ROWS;
}
#endif
@ -162,7 +167,13 @@ void matrix_print(void)
void matrix_set_remote(matrix_row_t* rows, uint8_t index) {
uint8_t offset = 0;
#ifdef MASTER_IS_ON_RIGHT
#ifdef EE_HANDS
if (eeconfig_read_handedness()) {
offset = LOCAL_MATRIX_ROWS * (index + 1);
} else {
offset = MATRIX_ROWS - LOCAL_MATRIX_ROWS * (index + 2);
}
#elif defined(MASTER_IS_ON_RIGHT)
offset = MATRIX_ROWS - LOCAL_MATRIX_ROWS * (index + 2);
#else
offset = LOCAL_MATRIX_ROWS * (index + 1);