Correct logging of RAW lines

This commit is contained in:
Sybren A. Stüvel 2026-03-14 23:34:36 +01:00
parent 712d3b1021
commit b670a7a709
5 changed files with 7 additions and 20 deletions

View file

@ -446,14 +446,6 @@ const char *MyMesh::getLogDateTime() {
return tmp;
}
void MyMesh::logRxRaw(float snr, float rssi, const uint8_t raw[], int len) {
#if MESH_PACKET_LOGGING
Serial.print(getLogDateTime());
Serial.print(" RAW: ");
mesh::Utils::printHex(Serial, raw, len);
Serial.println();
#endif
}
void MyMesh::logRx(mesh::Packet *pkt, int len, float score) {
#ifdef WITH_BRIDGE