Commit Graph
11 Commits
Author SHA1 Message Date
TD-er 6affa5c48b [Cleanup] Reduce build size. 2023-01-07 21:33:11 +01:00
Ton Huisman 765e7ca2b4 [N001] Update comments 2022-12-29 14:55:29 +01:00
Ton Huisman 28f67ea6c7 [N001] Add timezone offset in Date header 2022-12-29 14:14:27 +01:00
Ton Huisman b419461fe8 [N001] Add Date in nail header 2022-12-28 22:51:28 +01:00
TD-er 6b0474d2a3 [Build] Remove all debug logs when BUILD_NO_DEBUG is set 2022-08-30 17:46:39 +02:00
TD-er 85643ec39d [Cleanup] Uncrustify _N001_Email.cpp 2022-08-24 11:15:02 +02:00
TD-er 2c5d7220ce [Network Timeout] Apply workaround to set timeout in msec on ESP32
WiFiClient has a setTimeout function which expects seconds.
The parent class, Client, does expect msec.
So by casting to its parent and then calling setTimeout, we can again set the timeout in msec.
2022-08-24 10:45:00 +02:00
TD-er 58737d4a5d [Build Version] Generate build version based on date 2022-08-21 12:46:41 +02:00
TD-er 8db3af3a37 [Build] Include ESPEasy_config.h everywhere 2022-08-19 14:04:16 +02:00
TD-er 10cca9ca72 [Log] Call addLogMove where log Strings can be moved instead of copied
This is a macro for:
```
#define addLogMove(L, S)  addToLogMove(L, std::move(S))
```

This will then try to move the constructed string to the log buffer.
If it cannot be moved (e.g. log level is not active), the string will be cleared to free up memory.
2022-02-09 22:28:18 +01:00
TD-er 5c898ff71b [INO to CPP] Rename Nxxx.ino to .h/.cpp 2022-01-31 12:13:10 +01:00