diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/org/traccar/protocol/T55ProtocolDecoder.java | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/org/traccar/protocol/T55ProtocolDecoder.java b/src/org/traccar/protocol/T55ProtocolDecoder.java index e7a012f8d..da473d994 100644 --- a/src/org/traccar/protocol/T55ProtocolDecoder.java +++ b/src/org/traccar/protocol/T55ProtocolDecoder.java @@ -116,7 +116,12 @@ public class T55ProtocolDecoder extends BaseProtocolDecoder { else if (sentence.startsWith("IMEI")) { identify(sentence.substring(5, sentence.length())); } - + + // Identification + else if (sentence.startsWith("$GPFID")) { + identify(sentence.substring(6, sentence.length())); + } + // Identification else if (Character.isDigit(sentence.charAt(0)) & sentence.length() == 15) { identify(sentence); |