Fix GsmLocationTime

Signed-off-by: Sara Damiano <sdamiano@stroudcenter.org>
This commit is contained in:
Sara Damiano
2020-02-20 14:53:27 -05:00
parent 1cad274f80
commit 7c0928fa71

View File

@@ -38,8 +38,9 @@ class TinyGsmGSMLocation {
int* minute, int* second) {
float lat = 0;
float lon = 0;
return thisModem().getGsmLocation(lat, lon, 0, year, month, day, hour,
minute, second);
float accuracy = 0;
return thisModem().getGsmLocation(&lat, &lon, &accuracy, year, month, day,
hour, minute, second);
}
/*