Skip to content

Commit

Permalink
Update ResQ_V2.1_OLED_SD_GPS.ino
Browse files Browse the repository at this point in the history
Fixed SD delimitiers for logging. Still crashes periodically
  • Loading branch information
MKme committed Jul 24, 2020
1 parent dad84d3 commit b538bad
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Code/ResQ_V2.1_OLED_SD_GPS/ResQ_V2.1_OLED_SD_GPS.ino
Original file line number Diff line number Diff line change
Expand Up @@ -404,11 +404,11 @@ void showDevices() {
if (dataFile) {
dataFile.print("Time;");
dataFile.print(time_str);
dataFile.print("Lat;");
dataFile.print(";Lat;");
dataFile.print(lat_str);
dataFile.print("Lon;");
dataFile.print(";Lon;");
dataFile.print(lng_str);
dataFile.print("Client;");
dataFile.print(";Client;");
dataFile.print(formatMac1(clients_known[u].station));
dataFile.print(";RSSI;");
dataFile.print(clients_known[u].rssi);
Expand Down

0 comments on commit b538bad

Please sign in to comment.