Un-'fix' AMS_NERROR logic
This commit is contained in:
parent
06de9e6efb
commit
23961f5ecb
|
@ -115,12 +115,12 @@ TSState ts_sm_update_error() {
|
||||||
no_error_since = now;
|
no_error_since = now;
|
||||||
} else if (now - no_error_since > NO_ERROR_TIME) {
|
} else if (now - no_error_since > NO_ERROR_TIME) {
|
||||||
no_error_since = 0;
|
no_error_since = 0;
|
||||||
HAL_GPIO_WritePin(AMS_NERROR_GPIO_Port, AMS_NERROR_Pin, GPIO_PIN_RESET);
|
HAL_GPIO_WritePin(AMS_NERROR_GPIO_Port, AMS_NERROR_Pin, GPIO_PIN_SET);
|
||||||
return TS_INACTIVE;
|
return TS_INACTIVE;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
HAL_GPIO_WritePin(AMS_NERROR_GPIO_Port, AMS_NERROR_Pin, GPIO_PIN_SET);
|
HAL_GPIO_WritePin(AMS_NERROR_GPIO_Port, AMS_NERROR_Pin, GPIO_PIN_RESET);
|
||||||
return TS_ERROR;
|
return TS_ERROR;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue