Calibration: fix checking of scan of calibration points
PFW-1223
This commit is contained in:
parent
7356cd0811
commit
5a91e1de4d
1 changed files with 1 additions and 1 deletions
|
@ -918,7 +918,7 @@ bool check_scan(uint8_t *matrix32){
|
|||
for (int16_t i = 0; i < 32*32;++i){
|
||||
if (matrix32[i] == 0) {
|
||||
++mins;
|
||||
} else {
|
||||
} else if (matrix32[i] == 0xFF){
|
||||
++maxs;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue