first commit

This commit is contained in:
2026-02-21 17:11:31 +09:00
commit 18b4338361
4001 changed files with 365464 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
#ifndef FM_PARSE_GPS_H
#define FM_PARSE_GPS_H
#include "rm_sensordata.h"
#define NMEA_TOKEN_SIZE 51
class FMParseGPS
{
public:
static bool ParseRMC(char szSentence[], NMEA_INFO* data, int nPacketSize);
private:
static char* _GetNextToken(char* lpSentence, char* lpToken, int iTokenSize = NMEA_TOKEN_SIZE);
};
#endif // FM_PARSE_GPS_H