diff --git a/src/plugins/esp32/RangeTestPlugin.cpp b/src/plugins/esp32/RangeTestPlugin.cpp index 0af123c1..1252fe74 100644 --- a/src/plugins/esp32/RangeTestPlugin.cpp +++ b/src/plugins/esp32/RangeTestPlugin.cpp @@ -237,7 +237,7 @@ bool RangeTestPluginRadio::appendFile(const MeshPacket &mp) // Print the CSV header if (fileToWrite.println( - "time,from,sender name,sender lat,sender long,rx lat,rx long,rx snr,rx elevation,distance,payload")) { + "time,from,sender name,sender lat,sender long,rx lat,rx long,rx elevation,rx snr,distance,payload")) { DEBUG_MSG("File was written\n"); } else { DEBUG_MSG("File write failed\n"); diff --git a/src/plugins/esp32/StoreForwardPlugin.cpp b/src/plugins/esp32/StoreForwardPlugin.cpp index 6e405139..ae725422 100644 --- a/src/plugins/esp32/StoreForwardPlugin.cpp +++ b/src/plugins/esp32/StoreForwardPlugin.cpp @@ -197,10 +197,10 @@ ProcessMessage StoreForwardPlugin::handleReceived(const MeshPacket &mp) if (radioConfig.preferences.store_forward_plugin_enabled) { if (getFrom(&mp) != nodeDB.getNodeNum()) { - printPacket("----- PACKET FROM RADIO -----", &mp); + printPacket("PACKET FROM RADIO", &mp); // uint32_t sawTime = storeForwardPlugin->sawNode(getFrom(&mp) & 0xffffffff); // DEBUG_MSG("We last saw this node (%u), %u sec ago\n", mp.from & 0xffffffff, (millis() - sawTime) / 1000); - DEBUG_MSG(" -------------- "); + // DEBUG_MSG(" -------------- "); if (mp.decoded.portnum == PortNum_TEXT_MESSAGE_APP) { DEBUG_MSG("Packet came from - PortNum_TEXT_MESSAGE_APP\n");