diff options
-rw-r--r-- | src/org/traccar/protocol/MeiligaoProtocolDecoder.java | 8 |
1 files changed, 4 insertions, 4 deletions
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()); |