Complete fuel cut, maybe by wall wetting? Warning on decel (?) CUSTOM_OBD_SKIPPED_FUEL = 9010 fix #3225
This commit is contained in:
parent
c9591f2d1f
commit
bbcb82bf0f
|
@ -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
|
// 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) {
|
if (rpm > 2 * engineConfiguration->cranking.rpm) {
|
||||||
const char *outputName = outputs[0]->name;
|
const char *outputName = outputs[0]->name;
|
||||||
if (engine->prevOutputName == outputName
|
if (engine->prevOutputName == outputName
|
||||||
|
@ -253,6 +255,7 @@ void InjectionEvent::onTriggerTooth(size_t trgEventIndex, int rpm, efitick_t now
|
||||||
}
|
}
|
||||||
engine->prevOutputName = outputName;
|
engine->prevOutputName = outputName;
|
||||||
}
|
}
|
||||||
|
*/
|
||||||
|
|
||||||
#if EFI_PRINTF_FUEL_DETAILS
|
#if EFI_PRINTF_FUEL_DETAILS
|
||||||
if (printFuelDebug) {
|
if (printFuelDebug) {
|
||||||
|
|
|
@ -916,8 +916,10 @@ void doTestFuelSchedulerBug299smallAndMedium(int startUpDelayMs) {
|
||||||
//// assertInjectorDownEvent("8@8", 8, MS2US(45), 1);
|
//// assertInjectorDownEvent("8@8", 8, MS2US(45), 1);
|
||||||
//// assertInjectorDownEvent("8@9", 9, MS2US(55), 0);
|
//// 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));
|
ASSERT_EQ(CUSTOM_OBD_SKIPPED_FUEL, unitTestWarningCodeState.recentWarnings.get(0));
|
||||||
|
*/
|
||||||
}
|
}
|
||||||
|
|
||||||
void setInjectionMode(int value DECLARE_ENGINE_PARAMETER_SUFFIX) {
|
void setInjectionMode(int value DECLARE_ENGINE_PARAMETER_SUFFIX) {
|
||||||
|
@ -1094,8 +1096,10 @@ TEST(big, testFuelSchedulerBug299smallAndLarge) {
|
||||||
|
|
||||||
eth.moveTimeForwardUs(MS2US(20));
|
eth.moveTimeForwardUs(MS2US(20));
|
||||||
eth.executeActions();
|
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));
|
ASSERT_EQ(CUSTOM_OBD_SKIPPED_FUEL, unitTestWarningCodeState.recentWarnings.get(0));
|
||||||
|
*/
|
||||||
}
|
}
|
||||||
|
|
||||||
TEST(big, testSparkReverseOrderBug319) {
|
TEST(big, testSparkReverseOrderBug319) {
|
||||||
|
|
Loading…
Reference in New Issue