update updateFuelSensors for include InjectorModelPrimary/pressureCorrectionReference calculation

This commit is contained in:
FDSoftware 2025-02-26 12:55:02 -03:00 committed by rusefillc
parent 611ad836df
commit 82ed99ede3
1 changed files with 2 additions and 1 deletions

View File

@ -430,8 +430,9 @@ static void updateFuelSensors() {
engine->outputChannels.flexPercent = Sensor::getOrZero(SensorType::FuelEthanolPercent);
#if EFI_PROD_CODE
// todo: extract method? do better?
// todo: extract method? do better? see https://github.com/rusefi/rusefi/issues/7511 for details
engine->module<InjectorModelSecondary>()->pressureCorrectionReference = engine->module<InjectorModelSecondary>()->getFuelDifferentialPressure().Value + Sensor::get(SensorType::Map).value_or(STD_ATMOSPHERE);
engine->module<InjectorModelPrimary>()->pressureCorrectionReference = engine->module<InjectorModelPrimary>()->getFuelDifferentialPressure().Value + Sensor::get(SensorType::Map).value_or(STD_ATMOSPHERE);
#endif // EFI_PROD_CODE
engine->outputChannels.fuelTankLevel = Sensor::getOrZero(SensorType::FuelLevel);