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