refactoring: renaming method

This commit is contained in:
rusefillc 2022-09-27 22:21:18 -04:00
parent 28f7d9cfb9
commit 1bfc6adac3
4 changed files with 4 additions and 4 deletions

View File

@ -227,7 +227,7 @@ void onConfigurationChangeBoostCallback(engine_configuration_s *previousConfigur
void initBoostCtrl() {
// todo: why do we have 'isBoostControlEnabled' setting exactly?
// 'initAuxPid' is an example of a subsystem without explicit enable
// 'initVvtActuators' is an example of a subsystem without explicit enable
if (!engineConfiguration->isBoostControlEnabled) {
return;
}

View File

@ -149,7 +149,7 @@ void stopVvtControlPins() {
}
}
void initAuxPid() {
void initVvtActuators() {
vvtTable1.init(config->vvtTable1, config->vvtTable1LoadBins,
config->vvtTable1RpmBins);

View File

@ -14,7 +14,7 @@
class ValueProvider3D;
void initAuxPid();
void initVvtActuators();
void startVvtControlPins();
void stopVvtControlPins();

View File

@ -690,7 +690,7 @@ void initEngineContoller() {
#endif /* EFI_ALTERNATOR_CONTROL */
#if EFI_AUX_PID
initAuxPid();
initVvtActuators();
#endif /* EFI_AUX_PID */
#if EFI_MALFUNCTION_INDICATOR