diff options
author | Anton Tananaev <anton.tananaev@gmail.com> | 2016-07-16 17:24:19 +1200 |
---|---|---|
committer | Anton Tananaev <anton.tananaev@gmail.com> | 2016-07-16 17:24:19 +1200 |
commit | d8da0a28c50993e275b5ce9028d9e21ab23944aa (patch) | |
tree | 53f3409ec40f9d4502ee0721d2ed27c66401c251 /src/org/traccar/protocol/T800xProtocolDecoder.java | |
parent | 40bd91fd8a798c33212150afdccf95e5f5ea52c5 (diff) | |
download | trackermap-server-d8da0a28c50993e275b5ce9028d9e21ab23944aa.tar.gz trackermap-server-d8da0a28c50993e275b5ce9028d9e21ab23944aa.tar.bz2 trackermap-server-d8da0a28c50993e275b5ce9028d9e21ab23944aa.zip |
Implement T800X custom commands
Diffstat (limited to 'src/org/traccar/protocol/T800xProtocolDecoder.java')
-rw-r--r-- | src/org/traccar/protocol/T800xProtocolDecoder.java | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/src/org/traccar/protocol/T800xProtocolDecoder.java b/src/org/traccar/protocol/T800xProtocolDecoder.java index 67a4d55ca..dcf45bb06 100644 --- a/src/org/traccar/protocol/T800xProtocolDecoder.java +++ b/src/org/traccar/protocol/T800xProtocolDecoder.java @@ -1,5 +1,5 @@ /* - * Copyright 2015 Anton Tananaev (anton.tananaev@gmail.com) + * Copyright 2015 - 2016 Anton Tananaev (anton.tananaev@gmail.com) * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -34,10 +34,11 @@ public class T800xProtocolDecoder extends BaseProtocolDecoder { super(protocol); } - private static final int MSG_LOGIN = 0x01; - private static final int MSG_GPS = 0x02; - private static final int MSG_HEARTBEAT = 0x03; - private static final int MSG_ALARM = 0x04; + public static final int MSG_LOGIN = 0x01; + public static final int MSG_GPS = 0x02; + public static final int MSG_HEARTBEAT = 0x03; + public static final int MSG_ALARM = 0x04; + public static final int MSG_COMMAND = 0x81; private static float readSwappedFloat(ChannelBuffer buf) { byte[] bytes = new byte[4]; |