one step back

This commit is contained in:
rusefi 2020-01-19 02:58:54 -05:00
parent 2ae53d1681
commit 85a0490796
1 changed files with 2 additions and 1 deletions

View File

@ -92,7 +92,8 @@ void SingleTimerExecutor::scheduleByTimestampNt(scheduling_s* scheduling, efitim
if (deltaTimeUs >= TOO_FAR_INTO_FUTURE) {
// we are trying to set callback for too far into the future. This does not look right at all
firmwareError(CUSTOM_ERR_TASK_TIMER_OVERFLOW, "scheduleByTimestampNt() too far: %d", deltaTimeUs);
// this does not pass CI :(
// firmwareError(CUSTOM_ERR_TASK_TIMER_OVERFLOW, "scheduleByTimestampNt() too far: %d", deltaTimeUs);
return;
}
#endif