Skip to content

Commit

Permalink
0.8.105
Browse files Browse the repository at this point in the history
* fix compile of esp32-minimal
  • Loading branch information
lumapu committed Apr 4, 2024
1 parent 29adc76 commit da34e73
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions src/CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion src/plugins/Display/Display_ePaper.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit da34e73

Please sign in to comment.