refactoring: better method name

This commit is contained in:
rusefillc 2022-09-09 18:02:38 -04:00
parent b124dbe753
commit 45eaa0546c
2 changed files with 3 additions and 3 deletions

View File

@ -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;

View File

@ -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.