From 29808150e32b86389c03fca2fb71f2f7927914b4 Mon Sep 17 00:00:00 2001 From: Matthew Kennedy Date: Tue, 20 Jul 2021 11:16:43 -0700 Subject: [PATCH] led init order (#2997) --- firmware/rusefi.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/firmware/rusefi.cpp b/firmware/rusefi.cpp index 33b8c37437..df8fa5d778 100644 --- a/firmware/rusefi.cpp +++ b/firmware/rusefi.cpp @@ -298,6 +298,9 @@ void runRusEfiWithConfig() { return; } + // Start this early - it will start LED blinking and such + startStatusThreads(); + /** * Initialize hardware drivers */ @@ -337,8 +340,6 @@ void runRusEfiWithConfig() { initTimePerfActions(); #endif - startStatusThreads(); - runSchedulingPrecisionTestIfNeeded(); } }