refactoring: better method name
This commit is contained in:
parent
b124dbe753
commit
45eaa0546c
|
@ -198,7 +198,7 @@ void Engine::periodicSlowCallback() {
|
||||||
vvtTriggerConfiguration[camIndex].update();
|
vvtTriggerConfiguration[camIndex].update();
|
||||||
}
|
}
|
||||||
|
|
||||||
watchdog();
|
efiWatchdog();
|
||||||
updateSlowSensors();
|
updateSlowSensors();
|
||||||
checkShutdown();
|
checkShutdown();
|
||||||
|
|
||||||
|
@ -442,7 +442,7 @@ void Engine::setConfig() {
|
||||||
injectEngineReferences();
|
injectEngineReferences();
|
||||||
}
|
}
|
||||||
|
|
||||||
void Engine::watchdog() {
|
void Engine::efiWatchdog() {
|
||||||
#if EFI_ENGINE_CONTROL
|
#if EFI_ENGINE_CONTROL
|
||||||
if (isRunningPwmTest)
|
if (isRunningPwmTest)
|
||||||
return;
|
return;
|
||||||
|
|
|
@ -353,7 +353,7 @@ public:
|
||||||
|
|
||||||
void preCalculate();
|
void preCalculate();
|
||||||
|
|
||||||
void watchdog();
|
void efiWatchdog();
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Needed by EFI_MAIN_RELAY_CONTROL to shut down the engine correctly.
|
* Needed by EFI_MAIN_RELAY_CONTROL to shut down the engine correctly.
|
||||||
|
|
Loading…
Reference in New Issue