~ruther/qmk_firmware

2c8149aa55641c3ebcb7c75b4f8f1c7216e9662d — Danny Nguyen 6 years ago 5971b66
Fix compilation error when I2C and encoder is enabled for split code
1 files changed, 1 insertions(+), 1 deletions(-)

M quantum/split_common/transport.c
M quantum/split_common/transport.c => quantum/split_common/transport.c +1 -1
@@ 74,7 74,7 @@ bool transport_master(matrix_row_t matrix[]) {
#  endif

#  ifdef ENCODER_ENABLE
  i2c_readReg(SLAVE_I2C_ADDRESS, I2C_ENCODER_START, (void *)i2c_buffer->encoder_state, sizeof(I2C_slave_buffer_t.encoder_state), TIMEOUT);
  i2c_readReg(SLAVE_I2C_ADDRESS, I2C_ENCODER_START, (void *)i2c_buffer->encoder_state, sizeof(i2c_buffer->encoder_state), TIMEOUT);
  encoder_update_raw(i2c_buffer->encoder_state);
#  endif