Browse Source

0.8.132

* fix boot loop once no ePaper is connected #1713, #1714
main
lumapu 2 months ago
parent
commit
77ac64dfa2
  1. 3
      src/CHANGES.md
  2. 2
      src/defines.h
  3. 2
      src/plugins/Display/Display.h

3
src/CHANGES.md

@ -1,5 +1,8 @@
# Development Changes # Development Changes
## 0.8.132 - 2024-08-09
* fix boot loop once no ePaper is connected #1713, #1714
## 0.8.131 - 2024-08-08 ## 0.8.131 - 2024-08-08
* improved refresh routine of ePaper, full refresh each 12h #1107 #1706 * improved refresh routine of ePaper, full refresh each 12h #1107 #1706

2
src/defines.h

@ -13,7 +13,7 @@
//------------------------------------- //-------------------------------------
#define VERSION_MAJOR 0 #define VERSION_MAJOR 0
#define VERSION_MINOR 8 #define VERSION_MINOR 8
#define VERSION_PATCH 131 #define VERSION_PATCH 132
//------------------------------------- //-------------------------------------
typedef struct { typedef struct {
uint8_t ch; uint8_t ch;

2
src/plugins/Display/Display.h

@ -74,7 +74,7 @@ class Display {
void loop() { void loop() {
#if defined(ESP32) && !defined(ETHERNET) #if defined(ESP32) && !defined(ETHERNET)
if (DISP_TYPE_T10_EPAPER == mCfg->type) { if ((nullptr != mCfg) && (DISP_TYPE_T10_EPAPER == mCfg->type)) {
mEpaper.refreshLoop(); mEpaper.refreshLoop();
} }
#endif #endif

Loading…
Cancel
Save