save some implementation

This commit is contained in:
2025-04-22 14:27:07 +02:00
parent 35a11734e2
commit 9104869ecf
27 changed files with 1789 additions and 1734 deletions

14
main/hw/gps.h Normal file
View File

@@ -0,0 +1,14 @@
#ifndef GPS_COMPONENT
#define GPS_COMPONENT
#include "driver/uart.h"
#include "soc/uart_struct.h"
#include "buscfg.h"
void gps_task(void *arg);
void parse_gpgga(const char *nmea);
void parse_gprmc(const char *nmea);
#endif