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

remove sourceId from api in sendNMEA0183

This commit is contained in:
wellenvogel
2021-12-01 20:57:06 +01:00
parent c105eef969
commit 15c572ed9a
3 changed files with 20 additions and 0 deletions

View File

@@ -317,6 +317,10 @@ public:
{
SendNMEA0183Message(msg, sourceId,convert);
}
virtual void sendNMEA0183Message(const tNMEA0183Msg &msg, bool convert)
{
SendNMEA0183Message(msg, sourceId,convert);
}
virtual int getSourceId()
{
return sourceId;
@@ -331,6 +335,9 @@ public:
virtual GwBoatData *getBoatData(){
return &boatData;
}
virtual const char* getTalkerId(){
return config.getString(config.talkerId,String("GP")).c_str();
}
virtual ~ApiImpl(){}
};