GDI4 overlap factor #5416

This commit is contained in:
Andrey 2023-07-21 00:53:13 -04:00
parent 22477db9f8
commit ae1eb88498
1 changed files with 4 additions and 4 deletions

View File

@ -150,10 +150,6 @@ angle_t HpfpQuantity::pumpAngleFuel(int rpm, HpfpController *model) {
engineConfiguration->hpfpLobeProfileAngle);
}
bool isGdiEngine() {
return engineConfiguration->hpfpCamLobes > 0;
}
void HpfpController::onFastCallback() {
// Pressure current/target calculation
int rpm = Sensor::getOrZero(SensorType::Rpm);
@ -242,3 +238,7 @@ void HpfpController::scheduleNextCycle() {
}
#endif // EFI_HPFP
bool isGdiEngine() {
return engineConfiguration->hpfpCamLobes > 0;
}