HW CI has failed 11 times since Oct 2 #1849

This commit is contained in:
rusefillc 2020-10-03 19:45:39 -04:00
parent 17c87dbd90
commit dce24274a2
2 changed files with 3 additions and 1 deletions

View File

@ -1269,7 +1269,7 @@ static void setValue(const char *paramStr, const char *valueStr) {
engineConfiguration->warningPeriod = valueI;
} else if (strEqualCaseInsensitive(paramStr, "dwell")) {
setConstantDwell(valueF PASS_CONFIG_PARAMETER_SUFFIX);
} else if (strEqualCaseInsensitive(paramStr, "engineSnifferRpmThreshold")) {
} else if (strEqualCaseInsensitive(paramStr, CMD_ENGINESNIFFERRPMTHRESHOLD)) {
engineConfiguration->engineSnifferRpmThreshold = valueI;
// migrate to new laucnh fields?
// } else if (strEqualCaseInsensitive(paramStr, "step1rpm")) {

View File

@ -71,6 +71,8 @@ public class AutoTest extends BaseTest {
private void testVW_60_2() {
setEngineType(ET_VW_ABA);
// trying to disable engine sniffer to help https://github.com/rusefi/rusefi/issues/1849
sendCommand("set " + CMD_ENGINESNIFFERRPMTHRESHOLD + " 100");
changeRpm(900);
// first let's get to expected RPM
assertRpmDoesNotJump(20000, 15, 30, FAIL, commandQueue);