Merge pull request #3058 from proddy/core3

small adjustments
This commit is contained in:
Proddy
2026-05-04 08:23:28 +02:00
committed by GitHub
3 changed files with 3 additions and 3 deletions

View File

@@ -33,7 +33,7 @@ class String {
return lhs;
}
bool isEmpty() {
bool isEmpty() const {
return _str.empty();
}

View File

@@ -43,7 +43,7 @@ namespace emsesp {
#define NETWORK_RECONNECTION_DELAY_LONG 10000 // 10 seconds - for debugging
#endif
#define MAX_NETWORK_RECONNECTION_ATTEMPTS 3 // maximum number of network reconnection attempts before going to AP fallback
#define MAX_NETWORK_RECONNECTION_ATTEMPTS 4 // maximum number of network reconnection attempts before going to AP fallback
#define DNS_PORT 53 // dns server port for captive portal

View File

@@ -92,7 +92,7 @@ void shuntingYard_test21() {
}
void shuntingYard_test22() {
run_shuntingYard_test("", "boiler/storagetemp2 == ''");
run_shuntingYard_test("0", "boiler/storagetemp2 == ''");
}
void shuntingYard_test23() {