1
0
mirror of https://github.com/thooge/esp32-nmea2000-obp60.git synced 2025-12-13 05:53:06 +01:00

add exampleTask

This commit is contained in:
wellenvogel
2021-11-25 19:55:13 +01:00
parent 5b39145e4f
commit 99ba4b3d8e
4 changed files with 94 additions and 0 deletions

View File

@@ -4,6 +4,7 @@
#include "N2kMessages.h"
#include "NMEA0183Messages.h"
#include "GWConfig.h"
#include "GwBoatData.h"
//API to be used for additional tasks
class GwApi{
public:
@@ -13,5 +14,6 @@ class GwApi{
virtual int getSourceId()=0;
virtual GwConfigHandler *getConfig()=0;
virtual GwLog *getLogger()=0;
virtual GwBoatData *getBoatData()=0;
};
#endif