Remove debugging messages.

This commit is contained in:
Jonathan Naylor 2020-05-04 13:57:47 +01:00
parent e83aa61428
commit 4f34393a63
2 changed files with 1 additions and 4 deletions

View File

@ -649,9 +649,7 @@ void CKenwoodNetwork::processKenwoodData(unsigned char* inData)
outData[5U] = inData[12U];
outData[6U] = inData[11U];
::memcpy(inData, outData, 7U);
CUtils::dump(4U, "Outgoing Kenwood GPS Data Header/Trailer", inData, 7U);
} else {
CUtils::dump(4U, "Incoming Kenwood GPS Data", inData, 31U);
outData[0U] = 0x90U;
outData[1U] = inData[8U];
outData[2U] = inData[7U];
@ -677,6 +675,5 @@ void CKenwoodNetwork::processKenwoodData(unsigned char* inData)
outData[22U] = inData[27U];
outData[23U] = inData[29U];
::memcpy(inData, outData, 24U);
CUtils::dump(4U, "Outgoing Kenwood GPS Data Body", inData, 24U);
}
}

View File

@ -19,6 +19,6 @@
#if !defined(VERSION_H)
#define VERSION_H
const char* VERSION = "20200429";
const char* VERSION = "20200504";
#endif