* fix boot loop once no ePaper is connected #1713, #1714
@ -1,5 +1,8 @@
# Development Changes
## 0.8.132 - 2024-08-09
## 0.8.131 - 2024-08-08
* improved refresh routine of ePaper, full refresh each 12h #1107 #1706
@ -13,7 +13,7 @@
//-------------------------------------
#define VERSION_MAJOR 0
#define VERSION_MINOR 8
#define VERSION_PATCH 131
#define VERSION_PATCH 132
typedef struct {
uint8_t ch;
@ -74,7 +74,7 @@ class Display {
void loop() {
#if defined(ESP32) && !defined(ETHERNET)
if (DISP_TYPE_T10_EPAPER == mCfg->type) {
if ((nullptr != mCfg) && (DISP_TYPE_T10_EPAPER == mCfg->type)) {
mEpaper.refreshLoop();
}
#endif