Changeset 146
- Timestamp:
- 09/20/2008 12:39:55 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/com/romraider/io/j2534/api/TestJ2534.java
r145 r146 7 7 import static com.romraider.io.j2534.op20.OpenPort20.FLAG_ISO9141_NO_CHECKSUM; 8 8 import static com.romraider.io.j2534.op20.OpenPort20.PROTOCOL_ISO9141; 9 import com.romraider.util.HexUtil;9 import static com.romraider.util.HexUtil.asHex; 10 10 11 11 public final class TestJ2534 { … … 31 31 byte[] response = api.readMsg(channelId); 32 32 33 System.out.println("Request = " + HexUtil.asHex(ecuInit));34 System.out.println("Response = " + HexUtil.asHex(response));33 System.out.println("Request = " + asHex(ecuInit)); 34 System.out.println("Response = " + asHex(response)); 35 35 36 36 } finally {
Note: See TracChangeset
for help on using the changeset viewer.