Changeset 141
- Timestamp:
- 09/20/2008 12:13:59 PM (5 years ago)
- Location:
- trunk
- Files:
-
- 1 added
- 3 edited
-
lib/logger/jinvoke.jar (added)
-
src/com/romraider/io/j2534/api/J2534.java (modified) (1 diff)
-
src/com/romraider/io/j2534/api/TestJ2534.java (modified) (1 diff)
-
src/com/romraider/io/j2534/op20/J2534OpenPort20.java (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/com/romraider/io/j2534/api/J2534.java
r140 r141 16 16 int startPassMsgFilter(int channelId, byte mask, byte pattern); 17 17 18 void writeMsg s(int channelId, byte[] data);18 void writeMsg(int channelId, byte[] data); 19 19 20 byte[] readMsgs(int channelId); 20 // FIX - Needs to return msg type, etc. Create Response object. 21 byte[] readMsg(int channelId); 21 22 22 23 void stopMsgFilter(int channelId, int msgId); -
trunk/src/com/romraider/io/j2534/api/TestJ2534.java
r140 r141 25 25 26 26 byte[] ecuInit = {(byte) 0x80, (byte) 0x10, (byte) 0xF0, (byte) 0x01, (byte) 0xBF}; 27 api.writeMsg s(channelId, ecuInit);27 api.writeMsg(channelId, ecuInit); 28 28 29 29 } finally { -
trunk/src/com/romraider/io/j2534/op20/J2534OpenPort20.java
r140 r141 79 79 } 80 80 81 public void writeMsg s(int channelId, byte[] data) {81 public void writeMsg(int channelId, byte[] data) { 82 82 PassThruMessage msg = passThruMessage(data); 83 83 int[] pNumMsgs = {1}; … … 86 86 } 87 87 88 public byte[] readMsg s(int channelId) {88 public byte[] readMsg(int channelId) { 89 89 PassThruMessage msg = passThruMessage(); 90 90 int[] pNumMsgs = {1};
Note: See TracChangeset
for help on using the changeset viewer.