Safety Bug: Add meas ADC timing flag to output of the pt1000 read function so it becomes invalid in this case.

This commit is contained in:
Mario Hüttel 2021-04-04 19:35:32 +02:00
parent df40ab1be7
commit 6ebd74cb31

View File

@ -232,7 +232,7 @@ int adc_pt1000_get_current_resistance(float *resistance)
*resistance = adc_pt1000_apply_calibration(pt1000_res_raw_lf);
if (safety_controller_get_flags_by_mask(ERR_FLAG_MEAS_ADC_OFF | ERR_FLAG_MEAS_ADC_OVERFLOW |
ERR_FLAG_MEAS_ADC_WATCHDOG)) {
ERR_FLAG_MEAS_ADC_WATCHDOG | ERR_FLAG_TIMING_MEAS_ADC)) {
ret_val = -100;
goto return_value;
}