Add support for SSD1680 e-paper controller
The driver is based on the construction of IL3820 (SSD1608), which is very similar from command point of view. It is tested on ESP32-S2 MCU and GoodDisplay GDEY029T94.
This commit is contained in:
parent
26fe6e7703
commit
f4fd82bd7e
11 changed files with 522 additions and 4 deletions
|
@ -66,6 +66,8 @@ extern "C" {
|
|||
#define DISP_BUF_SIZE (LV_HOR_RES_MAX * DISP_BUF_LINES)
|
||||
#elif defined (CONFIG_LV_TFT_DISPLAY_CONTROLLER_IL3820)
|
||||
#define DISP_BUF_SIZE (LV_VER_RES_MAX * IL3820_COLUMNS)
|
||||
#elif defined (CONFIG_LV_TFT_DISPLAY_CONTROLLER_SSD1680)
|
||||
#define DISP_BUF_SIZE (LV_VER_RES_MAX * SSD1680_COLUMNS)
|
||||
#elif defined CONFIG_LV_TFT_DISPLAY_CONTROLLER_RA8875
|
||||
#define DISP_BUF_SIZE (LV_HOR_RES_MAX * 40)
|
||||
#elif defined (CONFIG_LV_TFT_DISPLAY_CONTROLLER_GC9A01)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue