From 54b63ed02dd38b29918510b1e53af42abcb36cd4 Mon Sep 17 00:00:00 2001 From: rusEfi Date: Sun, 28 Jan 2018 18:09:19 -0500 Subject: [PATCH] closes #557 --- firmware/config/engines/custom_engine.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); }