This commit is contained in:
Sybren A. Stüvel 2026-04-20 10:05:07 +00:00 committed by GitHub
commit 7d55e13a05
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
16 changed files with 295 additions and 37 deletions

View file

@ -199,14 +199,6 @@ int MyMesh::handleRequest(ClientInfo *sender, uint32_t sender_timestamp, uint8_t
return 0; // unknown command
}
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) {
if (_logging) {