From 34a476ef05da4316cd1e268891e27a0f2a698d6a Mon Sep 17 00:00:00 2001 From: Anton Tananaev Date: Thu, 7 May 2015 10:05:29 +1200 Subject: Decode Tytan inputs correctly --- src/org/traccar/protocol/TytanProtocolDecoder.java | 30 ++++++++++++++-------- 1 file changed, 19 insertions(+), 11 deletions(-) (limited to 'src') diff --git a/src/org/traccar/protocol/TytanProtocolDecoder.java b/src/org/traccar/protocol/TytanProtocolDecoder.java index 49757d7b0..f03a9916c 100644 --- a/src/org/traccar/protocol/TytanProtocolDecoder.java +++ b/src/org/traccar/protocol/TytanProtocolDecoder.java @@ -106,8 +106,14 @@ public class TytanProtocolDecoder extends BaseProtocolDecoder { position.set(Event.KEY_INPUT, buf.readUnsignedByte()); break; case 6: - buf.readUnsignedByte(); - position.set(Event.PREFIX_ADC + 1, buf.readFloat()); + { + int n = buf.readUnsignedByte() >> 4; + if (n < 2) { + position.set(Event.PREFIX_ADC + n, buf.readFloat()); + } else { + position.set("DI" + (n - 2), buf.readFloat()); + } + } break; case 7: position.set(Event.KEY_ALARM, buf.readUnsignedShort()); @@ -125,16 +131,18 @@ public class TytanProtocolDecoder extends BaseProtocolDecoder { buf.skipBytes(9); break; case 24: - Set temps = new LinkedHashSet(); - int temp = buf.readUnsignedByte(); - for (int i = 3; i >= 0; i--) { - int n = (temp >> (2 * i)) & 0x03; - if (!temps.contains(n)) { - temps.add(n); + { + Set temps = new LinkedHashSet(); + int temp = buf.readUnsignedByte(); + for (int i = 3; i >= 0; i--) { + int n = (temp >> (2 * i)) & 0x03; + if (!temps.contains(n)) { + temps.add(n); + } + } + for (int n : temps) { + position.set(Event.PREFIX_TEMP + n, buf.readUnsignedByte()); } - } - for (int n : temps) { - position.set(Event.PREFIX_TEMP + n, buf.readUnsignedByte()); } break; case 25: -- cgit v1.2.3