1
0
mirror of https://github.com/thooge/esp32-nmea2000-obp60.git synced 2025-12-16 07:23:07 +01:00

improve statistics

This commit is contained in:
wellenvogel
2021-12-05 20:45:49 +01:00
parent b089ae2a39
commit 2e5b3b37d7
4 changed files with 117 additions and 97 deletions

View File

@@ -10,7 +10,8 @@ class GwLogWriter{
};
class GwLog{
private:
char buffer[100];
static const size_t bufferSize=200;
char buffer[bufferSize];
int logLevel=1;
GwLogWriter *writer;
SemaphoreHandle_t locker;