Complete fuel cut, maybe by wall wetting? Warning on decel (?) CUSTOM_OBD_SKIPPED_FUEL = 9010 fix #3225

This commit is contained in:
rusefillc 2021-09-27 22:04:03 -04:00
parent c9591f2d1f
commit bbcb82bf0f
2 changed files with 9 additions and 2 deletions

View File

@ -244,6 +244,8 @@ void InjectionEvent::onTriggerTooth(size_t trgEventIndex, int rpm, efitick_t now
// we are ignoring low RPM in order not to handle "engine was stopped to engine now running" transition
/*
* Wall Wetting would totally skip fuel on sudden deceleration a
if (rpm > 2 * engineConfiguration->cranking.rpm) {
const char *outputName = outputs[0]->name;
if (engine->prevOutputName == outputName
@ -253,6 +255,7 @@ void InjectionEvent::onTriggerTooth(size_t trgEventIndex, int rpm, efitick_t now
}
engine->prevOutputName = outputName;
}
*/
#if EFI_PRINTF_FUEL_DETAILS
if (printFuelDebug) {

View File

@ -916,8 +916,10 @@ void doTestFuelSchedulerBug299smallAndMedium(int startUpDelayMs) {
//// assertInjectorDownEvent("8@8", 8, MS2US(45), 1);
//// assertInjectorDownEvent("8@9", 9, MS2US(55), 0);
ASSERT_EQ( 1, unitTestWarningCodeState.recentWarnings.getCount()) << "warningCounter#testFuelSchedulerBug299smallAndMedium";
ASSERT_EQ( 0, unitTestWarningCodeState.recentWarnings.getCount()) << "warningCounter#testFuelSchedulerBug299smallAndMedium";
/*
ASSERT_EQ(CUSTOM_OBD_SKIPPED_FUEL, unitTestWarningCodeState.recentWarnings.get(0));
*/
}
void setInjectionMode(int value DECLARE_ENGINE_PARAMETER_SUFFIX) {
@ -1094,8 +1096,10 @@ TEST(big, testFuelSchedulerBug299smallAndLarge) {
eth.moveTimeForwardUs(MS2US(20));
eth.executeActions();
ASSERT_EQ( 1, unitTestWarningCodeState.recentWarnings.getCount()) << "warningCounter#testFuelSchedulerBug299smallAndLarge";
ASSERT_EQ( 0, unitTestWarningCodeState.recentWarnings.getCount()) << "warningCounter#testFuelSchedulerBug299smallAndLarge";
/*
ASSERT_EQ(CUSTOM_OBD_SKIPPED_FUEL, unitTestWarningCodeState.recentWarnings.get(0));
*/
}
TEST(big, testSparkReverseOrderBug319) {