refactoring: renaming method
This commit is contained in:
parent
28f7d9cfb9
commit
1bfc6adac3
|
@ -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;
|
||||
}
|
||||
|
|
|
@ -149,7 +149,7 @@ void stopVvtControlPins() {
|
|||
}
|
||||
}
|
||||
|
||||
void initAuxPid() {
|
||||
void initVvtActuators() {
|
||||
|
||||
vvtTable1.init(config->vvtTable1, config->vvtTable1LoadBins,
|
||||
config->vvtTable1RpmBins);
|
||||
|
|
|
@ -14,7 +14,7 @@
|
|||
|
||||
class ValueProvider3D;
|
||||
|
||||
void initAuxPid();
|
||||
void initVvtActuators();
|
||||
void startVvtControlPins();
|
||||
void stopVvtControlPins();
|
||||
|
||||
|
|
|
@ -690,7 +690,7 @@ void initEngineContoller() {
|
|||
#endif /* EFI_ALTERNATOR_CONTROL */
|
||||
|
||||
#if EFI_AUX_PID
|
||||
initAuxPid();
|
||||
initVvtActuators();
|
||||
#endif /* EFI_AUX_PID */
|
||||
|
||||
#if EFI_MALFUNCTION_INDICATOR
|
||||
|
|
Loading…
Reference in New Issue