diff --git a/firmware/config/engines/custom_engine.cpp b/firmware/config/engines/custom_engine.cpp index c2c5d42785..693a6c17f7 100644 --- a/firmware/config/engines/custom_engine.cpp +++ b/firmware/config/engines/custom_engine.cpp @@ -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); }