fuelConsumptionPerHour
This commit is contained in:
parent
fdba6cdee8
commit
821ba00d75
|
@ -163,7 +163,8 @@ typedef struct {
|
|||
int16_t accelerationX; // 276
|
||||
int16_t accelerationY; // 278
|
||||
float oilPressure; // 280
|
||||
int unused3[18];
|
||||
float fuelConsumptionPerHour; // 284
|
||||
int unused3[17];
|
||||
} TunerStudioOutputChannels;
|
||||
|
||||
#endif /* TUNERSTUDIO_CONFIGURATION_H_ */
|
||||
|
|
|
@ -876,10 +876,7 @@ void updateTunerStudioState(TunerStudioOutputChannels *tsOutputChannels DECLARE_
|
|||
tsOutputChannels->isIatError = !isValidIntakeAirTemperature(getIntakeAirTemperature(PASS_ENGINE_PARAMETER_SIGNATURE));
|
||||
#endif /* EFI_PROD_CODE */
|
||||
|
||||
#if 0
|
||||
// todo: add output variable 'fuelConsumptionPerHour'
|
||||
tsOutputChannels->fuelConsumptionPerHour = engine->engineState.fuelConsumption.perSecondConsumption;
|
||||
#endif
|
||||
|
||||
tsOutputChannels->warningCounter = engine->engineState.warningCounter;
|
||||
tsOutputChannels->lastErrorCode = engine->engineState.lastErrorCode;
|
||||
|
|
Loading…
Reference in New Issue