From 8e859763e2d9f1805301b19f01430b1aeaae98c5 Mon Sep 17 00:00:00 2001 From: Anton Tananaev Date: Mon, 19 Nov 2018 23:49:54 +1300 Subject: Update XRB 28 responses --- src/org/traccar/protocol/Xrb28ProtocolDecoder.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src') diff --git a/src/org/traccar/protocol/Xrb28ProtocolDecoder.java b/src/org/traccar/protocol/Xrb28ProtocolDecoder.java index 9c5bc741a..527fa4254 100644 --- a/src/org/traccar/protocol/Xrb28ProtocolDecoder.java +++ b/src/org/traccar/protocol/Xrb28ProtocolDecoder.java @@ -77,12 +77,12 @@ public class Xrb28ProtocolDecoder extends BaseProtocolDecoder { if (channel != null) { if (type.matches("L0|L1|W0|E1")) { channel.write(new NetworkMessage( - sentence.substring(0, 27).replace("SCOR", "SCOS") + "#\n", + "\u00ff\u00ff*SCOS" + sentence.substring(5, 27) + "#\n", remoteAddress)); } else if (type.equals("R0") && pendingCommand != null) { String command = pendingCommand.equals(Command.TYPE_ALARM_ARM) ? "L1," : "L0,"; channel.write(new NetworkMessage( - sentence.substring(0, 25).replace("SCOR", "SCOS") + command + sentence.substring(30) + "\n", + "\u00ff\u00ff*SCOS" + sentence.substring(5, 25) + command + sentence.substring(30) + "\n", remoteAddress)); pendingCommand = null; } -- cgit v1.2.3