Skip to content

Commit

Permalink
TNC Text cleaning
Browse files Browse the repository at this point in the history
  • Loading branch information
richonguzman committed Mar 10, 2024
1 parent 7401c36 commit 4247d00
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/LoRa_APRS_iGate.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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];
Expand Down
2 changes: 1 addition & 1 deletion src/lora_utils.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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","");
}
Expand Down
4 changes: 2 additions & 2 deletions src/station_utils.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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]);
}
}*/
//
}

Expand Down

0 comments on commit 4247d00

Please sign in to comment.