From 006c4969075ab8c41910c1fc5d8171a9b85e7bfa Mon Sep 17 00:00:00 2001 From: Anton Tananaev Date: Thu, 5 Jan 2017 07:53:44 +1300 Subject: Fix typos in Meiligao decoder --- src/org/traccar/protocol/MeiligaoProtocolDecoder.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src') diff --git a/src/org/traccar/protocol/MeiligaoProtocolDecoder.java b/src/org/traccar/protocol/MeiligaoProtocolDecoder.java index fe179418d..9f05bfa6b 100644 --- a/src/org/traccar/protocol/MeiligaoProtocolDecoder.java +++ b/src/org/traccar/protocol/MeiligaoProtocolDecoder.java @@ -104,8 +104,8 @@ public class MeiligaoProtocolDecoder extends BaseProtocolDecoder { .number("(d+.d+),") // total idling time .number("(d+),") // average hot start time .number("(d+),") // average speed - .number("(d+),") // history hightest speed - .number("(d+),") // history hightest rpm + .number("(d+),") // history highest speed + .number("(d+),") // history highest rpm .number("(d+),") // total harsh acceleration .number("(d+)") // total harsh break n0 .compile(); @@ -320,8 +320,8 @@ public class MeiligaoProtocolDecoder extends BaseProtocolDecoder { position.set("totalIdlingTime", parser.nextDouble()); position.set("averageHotStartTime", parser.nextInt()); position.set("averageSpeed", parser.nextInt()); - position.set("historyHightestSpeed", parser.nextInt()); - position.set("historyHightestRPM", parser.nextInt()); + position.set("historyHighestSpeed", parser.nextInt()); + position.set("historyHighestRpm", parser.nextInt()); position.set("totalHarshAccerleration", parser.nextInt()); position.set("totalHarshBrake", parser.nextInt()); -- cgit v1.2.3