We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 881a112 commit b9567b9Copy full SHA for b9567b9
src/VS2/ParserVS2.cpp
@@ -104,6 +104,7 @@ ParserResult ParserVS2::parse(const uint8_t b) {
104
case ParserStep::CHECKSUM:
105
if (_packet.checksum() != b) {
106
vw_log_w("Invalid checksum: 0x%02x (calculated 0x%02x)", b, _packet.checksum());
107
+ _step = ParserStep::STARTBYTE;
108
return ParserResult::CS_ERROR;
109
}
110
_step = ParserStep::STARTBYTE;
0 commit comments