diff options
author | Anton Tananaev <anton.tananaev@gmail.com> | 2015-05-04 11:10:55 +1200 |
---|---|---|
committer | Anton Tananaev <anton.tananaev@gmail.com> | 2015-05-04 11:10:55 +1200 |
commit | 93feb8a5484fd6c4c3da2032d4c843b3194b5ff7 (patch) | |
tree | 65902d2f1e71a776814d66b68d79c3a307febc2b /src/org/traccar/protocol/NavisProtocolDecoder.java | |
parent | 88e777a2ceb50e34dbe9577237483d8d3cebf346 (diff) | |
download | trackermap-server-93feb8a5484fd6c4c3da2032d4c843b3194b5ff7.tar.gz trackermap-server-93feb8a5484fd6c4c3da2032d4c843b3194b5ff7.tar.bz2 trackermap-server-93feb8a5484fd6c4c3da2032d4c843b3194b5ff7.zip |
Create prefixes for other data
Diffstat (limited to 'src/org/traccar/protocol/NavisProtocolDecoder.java')
-rw-r--r-- | src/org/traccar/protocol/NavisProtocolDecoder.java | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/org/traccar/protocol/NavisProtocolDecoder.java b/src/org/traccar/protocol/NavisProtocolDecoder.java index 8b142ce2e..125559aab 100644 --- a/src/org/traccar/protocol/NavisProtocolDecoder.java +++ b/src/org/traccar/protocol/NavisProtocolDecoder.java @@ -140,12 +140,12 @@ public class NavisProtocolDecoder extends BaseProtocolDecoder { // Temperature if (isFormat(format, F10, F20, F30)) { - position.set(Event.KEY_TEMPERATURE, buf.readShort()); + position.set(Event.PREFIX_TEMP + 1, buf.readShort()); } if (isFormat(format, F10, F20, F50, F52)) { - position.set("adc1", buf.readUnsignedShort()); - position.set("adc2", buf.readUnsignedShort()); + position.set(Event.PREFIX_ADC + 1, buf.readUnsignedShort()); + position.set(Event.PREFIX_ADC + 2, buf.readUnsignedShort()); } if (isFormat(format, F20, F50, F51, F52)) { |