This commit is contained in:
rusEfi 2018-01-28 18:09:19 -05:00
parent cd2dbde620
commit 54b63ed02d
1 changed files with 1 additions and 1 deletions

View File

@ -41,7 +41,7 @@ static void toggleTestAndScheduleNext() {
testPin.toggle();
periodIndex = (periodIndex + 1) % TEST_LEN;
testTime += test557[periodIndex];
scheduleByTimestamp(&scheduling, testTime, (schfunc_t) &scheduleByTimestamp, NULL);
scheduleByTimestamp(&scheduling, testTime, (schfunc_t) &toggleTestAndScheduleNext, NULL);
}