Skip to content

Commit

Permalink
syslog Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
richonguzman committed May 31, 2024
1 parent d3ebe43 commit e133d50
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/gps_utils.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ namespace GPS_Utils {
String GPSPacket = packet.substring(packet.indexOf(":!")+3);
String encodedLatitude = GPSPacket.substring(0,4);
String encodedLongtitude = GPSPacket.substring(4,8);
String comment = GPSPacket.substring(13);
String comment = GPSPacket.substring(12);

int Y1 = int(encodedLatitude[0]);
int Y2 = int(encodedLatitude[1]);
Expand Down

0 comments on commit e133d50

Please sign in to comment.