This commit is contained in:
Lubos Petrovic
2020-12-20 16:42:11 +01:00
parent 7657a724b6
commit 93e1c6fd90
3 changed files with 33 additions and 11 deletions

View File

@@ -404,7 +404,7 @@ bool CommObd2Ble4::parseRow() {
// 1 frame data
Serial.println(liveData->responseRow);
// Merge 0:xxxx 1:yyyy 2:zzzz to single xxxxyyyyzzzz string
// Merge frames 0:xxxx 1:yyyy 2:zzzz to single response xxxxyyyyzzzz string
if (liveData->responseRow.length() >= 2 && liveData->responseRow.charAt(1) == ':') {
liveData->responseRowMerged += liveData->responseRow.substring(2);
}