From beddf46069c0e1a656cd2c2263fcb4309ccb0ac9 Mon Sep 17 00:00:00 2001 From: Anton Tananaev Date: Sat, 19 Mar 2016 09:30:16 +1300 Subject: Decode GSM data for GoSafe protocol --- src/org/traccar/protocol/GoSafeProtocolDecoder.java | 18 +++++++++++++++++- 1 file changed, 17 insertions(+), 1 deletion(-) (limited to 'src/org/traccar/protocol/GoSafeProtocolDecoder.java') diff --git a/src/org/traccar/protocol/GoSafeProtocolDecoder.java b/src/org/traccar/protocol/GoSafeProtocolDecoder.java index dc9298e71..2e562d63e 100644 --- a/src/org/traccar/protocol/GoSafeProtocolDecoder.java +++ b/src/org/traccar/protocol/GoSafeProtocolDecoder.java @@ -64,7 +64,15 @@ public class GoSafeProtocolDecoder extends BaseProtocolDecoder { .expression(",?") .groupEnd() .groupBegin() - .text("GSM:").expression("[^,]*,?") + .text("GSM:") + .number("d+;") // registration + .number("d+;") // gsm signal + .number("(d+);") // mcc + .number("(d+);") // mnc + .number("(x+);") // lac + .number("(x+);") // cid + .number("-d+") // rssi + .expression("[^,]*,?") .groupEnd("?") .groupBegin() .text("COT:") @@ -139,6 +147,14 @@ public class GoSafeProtocolDecoder extends BaseProtocolDecoder { position.setAltitude(parser.nextDouble()); position.set(Event.KEY_HDOP, parser.next()); + + if (parser.hasNext(4)) { + position.set(Event.KEY_MCC, parser.nextInt()); + position.set(Event.KEY_MNC, parser.nextInt()); + position.set(Event.KEY_LAC, parser.nextInt(16)); + position.set(Event.KEY_CID, parser.nextInt(16)); + } + position.set(Event.KEY_ODOMETER, parser.next()); position.set(Event.KEY_POWER, parser.next()); position.set(Event.KEY_BATTERY, parser.next()); -- cgit v1.2.3