1
0
mirror of https://github.com/thooge/esp32-nmea2000-obp60.git synced 2026-02-11 07:03:07 +01:00

Data Calibration: Extend no. of calibration instances from 3 to 4

This commit is contained in:
Ulrich Meine
2026-01-17 13:45:41 +01:00
parent cc1d07fac0
commit cb2b85d505
3 changed files with 149 additions and 1 deletions

View File

@@ -22,7 +22,7 @@ private:
std::unordered_map<std::string, double> lastValue; // array for last smoothed values of boat data values
GwLog* logger;
static constexpr int8_t MAX_CALIBRATION_DATA = 3; // maximum number of calibration data instances
static constexpr int8_t MAX_CALIBRATION_DATA = 4; // maximum number of calibration data instances
public:
CalibrationData(GwLog* log);