Skip to content

Commit 3c2b9b3

Browse files
committed
Update calib_data.go
fixed missing argument
1 parent 5d65bf4 commit 3c2b9b3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

calib_data.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -579,7 +579,7 @@ func getValuesFromHex(cv *CharacteristicValues, cd *CalibrationData) {
579579
log.Err(err).Msg("could not get value for distOp5 of characteristic '" + cv.characteristic.Name + "'")
580580
}
581581
case "FncValues":
582-
cv.fncValues, err = cd.getFncValues(rl, &curPos)
582+
cv.fncValues, err = cd.getFncValues(rl, &curPos, cv)
583583
if err != nil {
584584
log.Err(err).Msg("could not get value for fncValues of characteristic '" + cv.characteristic.Name + "'")
585585
}

0 commit comments

Comments
 (0)