Skip to content

Commit

Permalink
Split Common: Serial Backlight LED fix (qmk#3586)
Browse files Browse the repository at this point in the history
  • Loading branch information
SethBarberee authored and drashna committed Aug 11, 2018
1 parent fd0bd29 commit 3eabd79
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions quantum/split_common/matrix.c
Original file line number Diff line number Diff line change
Expand Up @@ -340,6 +340,24 @@ void matrix_slave_scan(void) {
for (int i = 0; i < ROWS_PER_HAND; ++i) {
serial_slave_buffer[i] = matrix[offset+i];
}
#endif
#ifdef USE_I2C
#ifdef BACKLIGHT_ENABLE
// Read backlight level sent from master and update level on slave
backlight_set(i2c_slave_buffer[0]);
#endif
for (int i = 0; i < ROWS_PER_HAND; ++i) {
i2c_slave_buffer[i+1] = matrix[offset+i];
}
#else // USE_SERIAL
for (int i = 0; i < ROWS_PER_HAND; ++i) {
serial_slave_buffer[i] = matrix[offset+i];
}

#ifdef BACKLIGHT_ENABLE
// Read backlight level sent from master and update level on slave
backlight_set(serial_master_buffer[SERIAL_BACKLIT_START]);
#endif
#endif
matrix_slave_scan_user();
}
Expand Down

0 comments on commit 3eabd79

Please sign in to comment.