2022-10-20 18:02:27 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <furi_hal.h>
|
2022-10-28 16:23:02 +00:00
|
|
|
#include <notification/notification_messages.h>
|
2022-10-20 18:02:27 +00:00
|
|
|
|
2023-03-29 23:22:01 +00:00
|
|
|
#define GPS_BAUDRATE_9k 9600
|
|
|
|
#define GPS_BAUDRATE_57k 57600
|
|
|
|
#define GPS_BAUDRATE_115k 115200
|
2022-10-20 18:02:27 +00:00
|
|
|
#define RX_BUF_SIZE 1024
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
bool valid;
|
|
|
|
float latitude;
|
|
|
|
float longitude;
|
|
|
|
float speed;
|
|
|
|
float course;
|
|
|
|
float altitude;
|
|
|
|
char altitude_units;
|
|
|
|
int fix_quality;
|
|
|
|
int satellites_tracked;
|
2022-10-28 16:23:02 +00:00
|
|
|
int time_hours;
|
|
|
|
int time_minutes;
|
|
|
|
int time_seconds;
|
2022-10-20 18:02:27 +00:00
|
|
|
} GpsStatus;
|
|
|
|
|
|
|
|
typedef struct {
|
2023-03-07 21:18:23 +00:00
|
|
|
FuriMutex* mutex;
|
2022-10-20 18:02:27 +00:00
|
|
|
FuriThread* thread;
|
|
|
|
FuriStreamBuffer* rx_stream;
|
|
|
|
uint8_t rx_buf[RX_BUF_SIZE];
|
|
|
|
|
2022-10-28 16:23:02 +00:00
|
|
|
NotificationApp* notifications;
|
2023-03-29 23:22:01 +00:00
|
|
|
uint32_t baudrate;
|
|
|
|
bool changing_baudrate;
|
|
|
|
bool backlight_on;
|
2022-10-28 16:23:02 +00:00
|
|
|
|
2022-10-20 18:02:27 +00:00
|
|
|
GpsStatus status;
|
|
|
|
} GpsUart;
|
|
|
|
|
2023-03-29 23:22:01 +00:00
|
|
|
void gps_uart_init_thread(GpsUart* gps_uart);
|
|
|
|
void gps_uart_deinit_thread(GpsUart* gps_uart);
|
|
|
|
|
2022-10-20 18:02:27 +00:00
|
|
|
GpsUart* gps_uart_enable();
|
|
|
|
|
|
|
|
void gps_uart_disable(GpsUart* gps_uart);
|