init loops after sensors (#2927)
This commit is contained in:
parent
18b34bec43
commit
a7c355e982
|
@ -285,6 +285,9 @@ void runRusEfi(void) {
|
||||||
|
|
||||||
runRusEfiWithConfig();
|
runRusEfiWithConfig();
|
||||||
|
|
||||||
|
// periodic events need to be initialized after fuel&spark pins to avoid a warning
|
||||||
|
initPeriodicEvents(PASS_ENGINE_PARAMETER_SIGNATURE);
|
||||||
|
|
||||||
runMainLoop();
|
runMainLoop();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -302,9 +305,6 @@ void runRusEfiWithConfig() {
|
||||||
*/
|
*/
|
||||||
initHardware();
|
initHardware();
|
||||||
|
|
||||||
// periodic events need to be initialized after fuel&spark pins to avoid a warning
|
|
||||||
initPeriodicEvents(PASS_ENGINE_PARAMETER_SIGNATURE);
|
|
||||||
|
|
||||||
#if EFI_FILE_LOGGING
|
#if EFI_FILE_LOGGING
|
||||||
initMmcCard();
|
initMmcCard();
|
||||||
#endif /* EFI_FILE_LOGGING */
|
#endif /* EFI_FILE_LOGGING */
|
||||||
|
|
Loading…
Reference in New Issue