Add optional reporting of the home location to APRS-IS directly.

This commit is contained in:
Jonathan Naylor
2020-08-28 15:15:25 +01:00
parent 8ef67976ab
commit f93c48a922
12 changed files with 430 additions and 34 deletions

4
GPSD.h
View File

@@ -21,6 +21,7 @@
#if defined(USE_GPSD)
#include "APRSWriter.h"
#include "DMRNetwork.h"
#include "Timer.h"
@@ -36,6 +37,8 @@ public:
void addNetwork(CDMRNetwork* network);
void setAPRS(CAPRSWriter* aprs);
bool open();
void clock(unsigned int ms);
@@ -48,6 +51,7 @@ private:
struct gps_data_t m_gpsdData;
CTimer m_idTimer;
std::vector<CDMRNetwork*> m_networks;
CAPRSWriter* m_aprs;
void sendReport();
};