Skip to content

Commit 4a722f7

Browse files
Merge pull request #49 from zbas/patch-1
Update AS5600.cpp
2 parents 5065c84 + 778f92b commit 4a722f7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/encoders/as5600/AS5600.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -124,13 +124,13 @@ void AS5600::setZPos(uint16_t value) {
124124
void AS5600::setI2CAddr(uint8_t value) {
125125
uint8_t val = (uint8_t)readRegister(AS5600_REG_I2CADDR, 1);
126126
val = (value<<1) | (val&0x01);
127-
writeRegister(AS5600_REG_I2CADDR, val);
127+
writeRegister(AS5600_REG_I2CADDR, val, 1);
128128
};
129129

130130
void AS5600::setI2CUpdt(uint8_t value) {
131131
uint8_t val = (uint8_t)readRegister(AS5600_REG_I2CUPDT, 1);
132132
val = (value<<1) | (val&0x01);
133-
writeRegister(AS5600_REG_I2CUPDT, val);
133+
writeRegister(AS5600_REG_I2CUPDT, val, 1);
134134
};
135135

136136

0 commit comments

Comments
 (0)