From caf92cdadfb77d0ae15158ba9a289d033f5193ff Mon Sep 17 00:00:00 2001 From: Adam Kaliszan Date: Fri, 1 Jul 2022 07:12:30 +0200 Subject: [PATCH] Esp32 lilygo tty t5v2 bugfix E-ink initialization failed because small bug in the code (just 5 missing chars --- boards/xtensa/esp32/common/src/esp32_ssd1680.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/boards/xtensa/esp32/common/src/esp32_ssd1680.c b/boards/xtensa/esp32/common/src/esp32_ssd1680.c index 8b518db6530..9255a0a56a4 100644 --- a/boards/xtensa/esp32/common/src/esp32_ssd1680.c +++ b/boards/xtensa/esp32/common/src/esp32_ssd1680.c @@ -183,7 +183,7 @@ int board_lcd_initialize(void) * Must be because setpower(1) function invokes the chip configuration */ - g_lcddev->setpower(g_lcddev, CONFIG_LCD_MAXPOWER); + ret = g_lcddev->setpower(g_lcddev, CONFIG_LCD_MAXPOWER); } return ret;