diff options
| author | James Churchill <pelrun@gmail.com> | 2019-03-21 00:43:36 +1000 |
|---|---|---|
| committer | MechMerlin <30334081+mechmerlin@users.noreply.github.com> | 2019-03-20 07:43:36 -0700 |
| commit | cd696ed3d13542b09d34e8d78bb19ed6e7eee568 (patch) | |
| tree | 40340344ec3993ae9875f973403fee3fcaa43a47 /quantum/split_common/transport.c | |
| parent | ab294813919d9df803946d990a6a1d783ab69f0a (diff) | |
| download | qmk_firmware-cd696ed3d13542b09d34e8d78bb19ed6e7eee568.tar.gz qmk_firmware-cd696ed3d13542b09d34e8d78bb19ed6e7eee568.zip | |
Fix i2c splits with >8 columns (#5454)
Diffstat (limited to 'quantum/split_common/transport.c')
| -rw-r--r-- | quantum/split_common/transport.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/quantum/split_common/transport.c b/quantum/split_common/transport.c index 3696a2aba..631d913f7 100644 --- a/quantum/split_common/transport.c +++ b/quantum/split_common/transport.c | |||
| @@ -1,3 +1,4 @@ | |||
| 1 | #include <string.h> | ||
| 1 | 2 | ||
| 2 | #include "config.h" | 3 | #include "config.h" |
| 3 | #include "matrix.h" | 4 | #include "matrix.h" |
| @@ -59,9 +60,8 @@ bool transport_master(matrix_row_t matrix[]) { | |||
| 59 | } | 60 | } |
| 60 | 61 | ||
| 61 | void transport_slave(matrix_row_t matrix[]) { | 62 | void transport_slave(matrix_row_t matrix[]) { |
| 62 | for (int i = 0; i < ROWS_PER_HAND * sizeof(matrix_row_t); ++i) { | 63 | // Copy matrix to I2C buffer |
| 63 | i2c_slave_reg[I2C_KEYMAP_START + i] = matrix[i]; | 64 | memcpy((void*)(i2c_slave_reg + I2C_KEYMAP_START), (void *)matrix, ROWS_PER_HAND * sizeof(matrix_row_t) ); |
| 64 | } | ||
| 65 | 65 | ||
| 66 | // Read Backlight Info | 66 | // Read Backlight Info |
| 67 | # ifdef BACKLIGHT_ENABLE | 67 | # ifdef BACKLIGHT_ENABLE |
