diff --git a/firmware/config/engines/vw.cpp b/firmware/config/engines/vw.cpp index 280cee6cf8..300d223ed2 100644 --- a/firmware/config/engines/vw.cpp +++ b/firmware/config/engines/vw.cpp @@ -15,6 +15,7 @@ EXTERN_CONFIG; +// VW_ABA void setVwAba(DECLARE_CONFIG_PARAMETER_SIGNATURE) { setFrankensoConfiguration(PASS_CONFIG_PARAMETER_SIGNATURE); diff --git a/java_console/autotest/src/com/rusefi/AutoTest.java b/java_console/autotest/src/com/rusefi/AutoTest.java index f591b76b0c..d54527a5ea 100644 --- a/java_console/autotest/src/com/rusefi/AutoTest.java +++ b/java_console/autotest/src/com/rusefi/AutoTest.java @@ -53,6 +53,7 @@ public class AutoTest { sendCommand(getEnableCommand(Fields.CMD_FUNCTIONAL_TEST_MODE)); testCustomEngine(); testVW_60_2(); + testV12(); testMazdaMiata2003(); test2003DodgeNeon(); testFordAspire(); @@ -75,7 +76,16 @@ public class AutoTest { setEngineType(32); // TODO: we shall get this RPM higher! At the moment things fail at 5500 :( // first let's get to expected RPM - int rpm = 8500; + int rpm = 5000; + changeRpm(rpm); + assertRpmDoesNotJump(rpm); + } + + private static void testV12() { + setEngineType(40); + // TODO: we shall get this RPM higher! + // first let's get to expected RPM + int rpm = 4000; changeRpm(rpm); assertRpmDoesNotJump(rpm); }