TNC Text cleaning

This commit is contained in:
richonguzman 2024-03-10 12:16:08 -03:00
parent 7401c36fdf
commit 4247d00be4
3 changed files with 4 additions and 4 deletions

View file

@ -22,7 +22,7 @@
Configuration Config;
WiFiClient espClient;
String versionDate = "2024.03.09";
String versionDate = "2024.03.10";
int myWiFiAPIndex = 0;
int myWiFiAPSize = Config.wifiAPs.size();
WiFi_AP *currentWiFi = &Config.wifiAPs[myWiFiAPIndex];

View file

@ -162,7 +162,7 @@ namespace LoRa_Utils {
}
String packetSanitization(String packet) {
Serial.println(packet);
//Serial.println(packet);
if (packet.indexOf("\0")>0) {
packet.replace("\0","");
}

View file

@ -83,9 +83,9 @@ namespace STATION_Utils {
packetBuffer_temp.clear();
// BORRAR ESTO !!
for (int i=0; i<packetBuffer.size(); i++) {
/*for (int i=0; i<packetBuffer.size(); i++) {
Serial.println(packetBuffer[i]);
}
}*/
//
}