Fix PTC calculation (#18265)
This commit is contained in:
parent
2ddd7d2d8d
commit
eef2931150
|
@ -179,7 +179,7 @@ float ProbeTempComp::get_offset_for_temperature(const TempSensorID tsi, const fl
|
||||||
};
|
};
|
||||||
|
|
||||||
// Linear interpolation
|
// Linear interpolation
|
||||||
uint8_t idx = static_cast<uint8_t>(temp - start_temp / res_temp);
|
uint8_t idx = static_cast<uint8_t>((temp - start_temp) / res_temp);
|
||||||
|
|
||||||
// offset in um
|
// offset in um
|
||||||
float offset = 0.0f;
|
float offset = 0.0f;
|
||||||
|
|
Loading…
Reference in a new issue