1
0
mirror of https://github.com/thooge/esp32-nmea2000-obp60.git synced 2026-03-28 18:06:37 +01:00

Integrate many changes from master

This commit is contained in:
2026-03-18 13:29:57 +01:00
parent b2e67880d3
commit caf833e6ac
107 changed files with 8565 additions and 2688 deletions

View File

@@ -3,7 +3,7 @@
This code is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version.
version 2 of the License, or (at your option) any later version.
This code is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
@@ -17,4 +17,4 @@
void SensorList::add(SensorBase::Ptr sensor){
this->push_back(sensor);
}
}

View File

@@ -3,7 +3,7 @@
This code is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version.
version 2 of the License, or (at your option) any later version.
This code is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
@@ -93,6 +93,7 @@ class GwSensorConfig{
}
bool readConfig(T* s,GwConfigHandler *cfg){
if (s == nullptr) return false;
if (prefix != s->prefix) return false;
configReader(s,cfg);
return s->ok;
}
@@ -134,4 +135,4 @@ class GwSensorConfigInitializerList : public GwInitializer<GwSensorConfig<T>>::L
cfg->getValue(name, GwConfigDefinitions::prefix ## name)
#endif
#endif