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

NMEA2000 access for system page

This commit is contained in:
2025-08-06 15:21:29 +02:00
parent f823dadc6b
commit cf305e9f5a
6 changed files with 17 additions and 1 deletions

View File

@@ -2,6 +2,7 @@
#define _GWAPI_H
#include "GwMessage.h"
#include "N2kMsg.h"
#include "Nmea2kTwai.h"
#include "NMEA0183Msg.h"
#include "GWConfig.h"
#include "GwBoatData.h"
@@ -222,6 +223,7 @@ class GwApi{
* accessing boat data must only be executed from within the main thread
* you need to use the request pattern as shown in GwExampleTask.cpp
*/
virtual Nmea2kTwai *getNMEA2000()=0;
virtual GwBoatData *getBoatData()=0;
virtual ~GwApi(){}
};