diff --git a/src/com/romraider/io/j2534/api/TestJ2534.java b/src/com/romraider/io/j2534/api/TestJ2534.java index f4da6cf7..3f3c2f01 100644 --- a/src/com/romraider/io/j2534/api/TestJ2534.java +++ b/src/com/romraider/io/j2534/api/TestJ2534.java @@ -28,7 +28,7 @@ public final class TestJ2534 { byte[] ecuInit = {(byte) 0x80, (byte) 0x10, (byte) 0xF0, (byte) 0x01, (byte) 0xBF, (byte) 0x40}; api.writeMsg(channelId, ecuInit); - byte[] response = api.readMsg(channelId); + byte[] response = api.readMsg(channelId, 2000); System.out.println("Request = " + asHex(ecuInit)); System.out.println("Response = " + asHex(response));