diff options
author | seym45 <seym45@gmail.com> | 2023-08-22 01:29:10 +0400 |
---|---|---|
committer | seym45 <seym45@gmail.com> | 2023-08-22 01:29:10 +0400 |
commit | 09d4fb4a10a5362191023f5c82327d8d38ae830f (patch) | |
tree | 9eee93e7006c9256f4bbe3821e0f1911b153f899 /src/main/java/org/traccar/protocol | |
parent | 860b8ba8b370f710dd5530253d8748bf6185f1fa (diff) | |
download | trackermap-server-09d4fb4a10a5362191023f5c82327d8d38ae830f.tar.gz trackermap-server-09d4fb4a10a5362191023f5c82327d8d38ae830f.tar.bz2 trackermap-server-09d4fb4a10a5362191023f5c82327d8d38ae830f.zip |
Fix position periodic command code
Diffstat (limited to 'src/main/java/org/traccar/protocol')
-rw-r--r-- | src/main/java/org/traccar/protocol/GatorProtocolDecoder.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/java/org/traccar/protocol/GatorProtocolDecoder.java b/src/main/java/org/traccar/protocol/GatorProtocolDecoder.java index bcd1a64b7..c68546c00 100644 --- a/src/main/java/org/traccar/protocol/GatorProtocolDecoder.java +++ b/src/main/java/org/traccar/protocol/GatorProtocolDecoder.java @@ -38,7 +38,7 @@ public class GatorProtocolDecoder extends BaseProtocolDecoder { public static final int MSG_HEARTBEAT = 0x21; public static final int MSG_POSITION_REQUEST = 0x30; - public static final int MSG_POSITION_PERIODIC = 0x30; + public static final int MSG_POSITION_PERIODIC = 0x34; public static final int MSG_RESTORES_THE_OIL_DUCT = 0x38; public static final int MSG_CLOSE_THE_OIL_DUCT = 0x39; public static final int MSG_POSITION_DATA = 0x80; |