Fix compilation error when I2C and encoder is enabled for split code

This commit is contained in:
Danny Nguyen 2019-06-02 23:29:51 -04:00 committed by Drashna Jaelre
parent 5971b663cb
commit 2c8149aa55
1 changed files with 1 additions and 1 deletions

View File

@ -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