Fix lower cpi bound on PMW33XX (#22108)
This commit is contained in:
parent
c9810facce
commit
9c340077f6
3 changed files with 3 additions and 3 deletions
|
@ -22,7 +22,7 @@ void pmw33xx_set_cpi(uint8_t sensor, uint16_t cpi) {
|
|||
return;
|
||||
}
|
||||
|
||||
uint16_t cpival = CONSTRAIN((cpi / PMW33XX_CPI_STEP) - 1, 0, (PMW33XX_CPI_MAX / PMW33XX_CPI_STEP) - 1U);
|
||||
uint16_t cpival = CONSTRAIN((cpi / PMW33XX_CPI_STEP), (PMW33XX_CPI_MIN / PMW33XX_CPI_STEP), (PMW33XX_CPI_MAX / PMW33XX_CPI_STEP)) - 1U;
|
||||
// Sets upper byte first for more consistent setting of cpi
|
||||
pmw33xx_write(sensor, REG_Resolution_H, (cpival >> 8) & 0xFF);
|
||||
pmw33xx_write(sensor, REG_Resolution_L, cpival & 0xFF);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue