Browse Source

0.8.105

* fix compile of esp32-minimal
pull/1584/head
lumapu 10 months ago
parent
commit
da34e737c6
  1. 1
      src/CHANGES.md
  2. 2
      src/plugins/Display/Display_ePaper.cpp

1
src/CHANGES.md

@ -2,6 +2,7 @@
## 0.8.105 - 2024-04-05
* cleanup of `defines.h`
* fix compile of esp32-minimal
## 0.8.104 - 2024-04-04
* fix reboot on inverter save (ESP32) #1559

2
src/plugins/Display/Display_ePaper.cpp

@ -39,7 +39,7 @@ void DisplayEPaper::init(uint8_t type, uint8_t _CS, uint8_t _DC, uint8_t _RST, u
#if defined(ESP32) && defined(USE_HSPI_FOR_EPD)
hspi.begin(_SCK, _BUSY, _MOSI, _CS);
_display->epd2.selectSPI(hspi, SPISettings(spiClk, MSBFIRST, SPI_MODE0));
#elif defined(ESP32)
#elif defined(ESP32) && defined(PLUGIN_DISPLAY)
_display->epd2.init(_SCK, _MOSI, 115200, true, 20, false);
#endif
_display->init(115200, true, 20, false);

Loading…
Cancel
Save