Fix speed tracking bug

This commit is contained in:
Niccolò Izzo 2021-02-15 07:40:21 +01:00
parent c0a972963c
commit e9f0a46823
1 changed files with 0 additions and 1 deletions

View File

@ -34,7 +34,6 @@ void gps_taskFunc(char *line, int len, gps_t *state)
if (minmea_parse_rmc(&frame, line)) {
state->latitude = minmea_tocoord(&frame.latitude);
state->longitude = minmea_tocoord(&frame.longitude);
state->speed = minmea_tofloat(&frame.speed);
state->timestamp.hour = frame.time.hours;
state->timestamp.minute = frame.time.minutes;
state->timestamp.second = frame.time.seconds;