Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/dev' into dev
Browse files Browse the repository at this point in the history
  • Loading branch information
Richard Unger committed Mar 28, 2024
2 parents a542a71 + 232386b commit 8caf05d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/encoders/mt6835/MT6835.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ uint8_t MT6835::getStatus(){
uint8_t MT6835::getCalibrationStatus(){
uint8_t data[3] = {0};
data[0] = MT6835_OP_READ << 4 | MT6835_REG_CAL_STATUS >> 8;
data[1] = MT6835_REG_CAL_STATUS;
data[1] = MT6835_REG_CAL_STATUS & 0xFF;

spi->beginTransaction(settings);
if(nCS >= 0)
Expand Down

0 comments on commit 8caf05d

Please sign in to comment.