AP_RangeFinder_NMEA: decode each sentence once

This commit is contained in:
Iampete1 2020-07-20 23:33:39 +01:00 committed by Andrew Tridgell
parent d122f00c14
commit 2adbaf1a1d
2 changed files with 8 additions and 1 deletions

View File

@ -62,6 +62,10 @@ bool AP_RangeFinder_NMEA::decode(char c)
case '\n': case '\n':
case '*': case '*':
{ {
if (_sentence_done) {
return false;
}
// null terminate and decode latest term // null terminate and decode latest term
_term[_term_offset] = 0; _term[_term_offset] = 0;
bool valid_sentence = decode_latest_term(); bool valid_sentence = decode_latest_term();
@ -80,6 +84,7 @@ bool AP_RangeFinder_NMEA::decode(char c)
_checksum = 0; _checksum = 0;
_term_is_checksum = false; _term_is_checksum = false;
_distance_m = -1.0f; _distance_m = -1.0f;
_sentence_done = false;
return false; return false;
} }
@ -100,6 +105,7 @@ bool AP_RangeFinder_NMEA::decode_latest_term()
{ {
// handle the last term in a message // handle the last term in a message
if (_term_is_checksum) { if (_term_is_checksum) {
_sentence_done = true;
uint8_t nibble_high = 0; uint8_t nibble_high = 0;
uint8_t nibble_low = 0; uint8_t nibble_low = 0;
if (!hex_to_uint8(_term[0], nibble_high) || !hex_to_uint8(_term[1], nibble_low)) { if (!hex_to_uint8(_term[0], nibble_high) || !hex_to_uint8(_term[1], nibble_low)) {

View File

@ -62,4 +62,5 @@ private:
uint8_t _checksum; // checksum accumulator uint8_t _checksum; // checksum accumulator
bool _term_is_checksum; // current term is the checksum bool _term_is_checksum; // current term is the checksum
sentence_types _sentence_type; // the sentence type currently being processed sentence_types _sentence_type; // the sentence type currently being processed
bool _sentence_done; // true if this sentence has already been decoded
}; };