Hardware trigger input should be disabled if internal simulator is enabled #1355

This commit is contained in:
rusefi 2020-04-24 08:15:43 -04:00
parent b982f7dabb
commit 9a7b020972
1 changed files with 2 additions and 2 deletions

View File

@ -84,7 +84,7 @@ public class AutoTest {
changeRpm(900);
// TODO: we shall get this RPM higher!
// first let's get to expected RPM
assertRpmDoesNotJump(3000, 15, 30, FAIL);
assertRpmDoesNotJump(4000, 15, 30, FAIL);
}
private static void testV12() {
@ -92,7 +92,7 @@ public class AutoTest {
changeRpm(700);
// TODO: we shall get this RPM higher!
// first let's get to expected RPM
assertRpmDoesNotJump(1200, 15, 30, FAIL);
assertRpmDoesNotJump(2000, 15, 30, FAIL);
}
public static void assertRpmDoesNotJump(int rpm, int settleTime, int testDuration, Function<String, Object> callback) {