better message
This commit is contained in:
parent
a194b430e1
commit
13dcf7ea40
|
@ -10,11 +10,12 @@ import static com.rusefi.AutoTest.*;
|
||||||
* 2/22/2015
|
* 2/22/2015
|
||||||
*/
|
*/
|
||||||
public class RealHwTest {
|
public class RealHwTest {
|
||||||
|
private static final int STARTUP_SLEEP = 45;
|
||||||
private static final long SECOND = 1000L;
|
private static final long SECOND = 1000L;
|
||||||
|
|
||||||
public static void main(String[] args) throws InterruptedException {
|
public static void main(String[] args) throws InterruptedException {
|
||||||
System.out.println("Sleeping to give OS time to connect VCP driver");
|
System.out.println("Sleeping " + STARTUP_SLEEP + " seconds to give OS time to connect VCP driver");
|
||||||
Thread.sleep(45 * SECOND);
|
Thread.sleep(STARTUP_SLEEP * SECOND);
|
||||||
long start = System.currentTimeMillis();
|
long start = System.currentTimeMillis();
|
||||||
String port = startRealHardwareTest(args);
|
String port = startRealHardwareTest(args);
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue