auto-sync

This commit is contained in:
rusEfi 2014-11-08 01:03:19 -06:00
parent c081381455
commit 3f0fb7a033
1 changed files with 1 additions and 1 deletions

View File

@ -38,7 +38,7 @@ schfunc_t globalTimerCallback;
void setHardwareUsTimer(int32_t timeUs) {
if (timeUs == 1)
timeUs = 2; // for some reason '1' does not really work
efiAssertVoid(timeUs > 0, "neg timeUs");
efiAssertVoid(timeUs > 0, "not positive timeUs");
efiAssertVoid(timeUs < 10 * US_PER_SECOND, "setHardwareUsTimer() too large");
if (GPTDEVICE.state == GPT_ONESHOT)