only: better field name

This commit is contained in:
Andrey 2023-09-25 21:49:51 -04:00
parent 47637e2a48
commit 6f6755aac0
2 changed files with 2 additions and 2 deletions

View File

@ -147,7 +147,7 @@ int16_t rpmAcceleration;dRPM;"RPM acceleration",1, 0, 0, 5, 2
! it wants to send have been sent.
float calibrationValue;;"", 1, 0, 0, 0, 0
uint8_t calibrationMode;;"", 1, 0, 0, 0, 0
uint8_t idleTargetPosition;Idle: Stepper target position;"", 1, 0, 0, 0, 0
uint8_t idleStepperTargetPosition;Idle: Stepper target position;"", 1, 0, 0, 0, 0
! todo: this not needed in light of TS_SIGNATURE but rusEFI console still uses it. Need to migrate
! rusEFI console from TS_FILE_VERSION to TS_SIGNATURE :(

View File

@ -366,7 +366,7 @@ float IdleController::getIdlePosition(float rpm) {
engine->outputChannels.idleAirValvePosition = iacPosition;
extern StepperMotor iacMotor;
engine->outputChannels.idleTargetPosition = iacMotor.getTargetPosition();
engine->outputChannels.idleStepperTargetPosition = iacMotor.getTargetPosition();
#endif /* EFI_TUNER_STUDIO */
currentIdlePosition = iacPosition;