Skip to content

Commit

Permalink
Upd GPS
Browse files Browse the repository at this point in the history
  • Loading branch information
RogueMaster committed May 23, 2023
1 parent c4728d5 commit 6cd5184
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 2 deletions.
5 changes: 3 additions & 2 deletions ReadMe.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@ This software is for experimental purposes only and is not meant for any illegal

## Latest Updates - [PATREON: Latest Release RM0522-0201-0.83.2-d06b34a](https://www.patreon.com/RogueMaster?filters[tag]=Latest%20Release)

- Last Synced/Checked Unleashed, changes in [changelog](https://github.com/RogueMaster/flipperzero-firmware-wPlugins/blob/420/CHANGELOG.md) and in [commits](https://github.com/DarkFlippers/unleashed-firmware/commits/dev): `2023-05-23 16:30 EST`
- Last Synced/Checked OFW, changes in [commits](https://github.com/flipperdevices/flipperzero-firmware/commits/dev): `2023-05-23 16:30 EST`
- Last Synced/Checked Unleashed, changes in [changelog](https://github.com/RogueMaster/flipperzero-firmware-wPlugins/blob/420/CHANGELOG.md) and in [commits](https://github.com/DarkFlippers/unleashed-firmware/commits/dev): `2023-05-23 18:06 EST`
- Last Synced/Checked OFW, changes in [commits](https://github.com/flipperdevices/flipperzero-firmware/commits/dev): `2023-05-23 18:06 EST`
- [Join our Discord and see #announcemnets for our current giveaway!](https://discord.gg/roguemaster)
- Updated: [Dab Timer (By RogueMaster)](https://github.com/RogueMaster/flipperzero-dabtimer) Clock Faces Inverted
- UL: [Name Changer Service Improvements / ReWritten To Cover Needed Bluetooth Name Changes (By xMasterX)](https://github.com/DarkFlippers/unleashed-firmware/commit/a7ee5fea93ad424c159b9a9a242a13d6b79f5c8f)
Expand Down Expand Up @@ -70,6 +70,7 @@ This software is for experimental purposes only and is not meant for any illegal
- OFW: [Removed user-specific data from tar artifacts #2691 (By hedger)](https://github.com/flipperdevices/flipperzero-firmware/pull/2691)
- Updated: [WiFi (Marauder) v0.3.6 (By 0xchocolate & tcpassos)](https://github.com/0xchocolate/flipperzero-firmware-with-wifi-marauder-companion) [(By justcallmekoko)](https://github.com/0xchocolate/flipperzero-firmware-with-wifi-marauder-companion/pull/17)
- Updated: [Bluetooth TikTok Remote (By Willy-JL)](https://github.com/RogueMaster/flipperzero-firmware-wPlugins/commit/7772c9b0cec83c1e7e41f760d6f72b79d2138b4e)
- Updated: [GPS (By ezod)](https://github.com/ezod/flipperzero-gps) `Req: NMEA 0183`

<a name="release">

Expand Down
15 changes: 15 additions & 0 deletions applications/external/gps_nmea_uart/gps_uart.c
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,21 @@ static void gps_uart_parse_nmea(GpsUart* gps_uart, char* line) {
}
} break;

case MINMEA_SENTENCE_GLL:
{
struct minmea_sentence_gll frame;
if (minmea_parse_gll(&frame, line))
{
gps_uart->status.latitude = minmea_tocoord(&frame.latitude);
gps_uart->status.longitude = minmea_tocoord(&frame.longitude);
gps_uart->status.time_hours = frame.time.hours;
gps_uart->status.time_minutes = frame.time.minutes;
gps_uart->status.time_seconds = frame.time.seconds;

notification_message_block(gps_uart->notifications, &sequence_blink_red_10);
}
} break;

default:
break;
}
Expand Down

0 comments on commit 6cd5184

Please sign in to comment.