update updateFuelSensors for include InjectorModelPrimary/pressureCorrectionReference calculation
This commit is contained in:
parent
611ad836df
commit
82ed99ede3
|
@ -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);
|
||||
|
|
Loading…
Reference in New Issue