display: Add support for an ST7789V based LCD
This adds a driver for st7789v lcd controller, and TL019FQV01 lcd. The bulk of the driver is based on the existing ili9340 driver. Signed-off-by: Marc Reilly <marc@cpdesign.com.au>
This commit is contained in:
parent
3f5aae9d24
commit
b0203ac95b
7 changed files with 720 additions and 0 deletions
|
@ -8,6 +8,7 @@ zephyr_sources_ifdef(CONFIG_SDL_DISPLAY display_sdl.c)
|
|||
zephyr_sources_ifdef(CONFIG_DUMMY_DISPLAY display_dummy.c)
|
||||
zephyr_sources_ifdef(CONFIG_FRAMEBUF_DISPLAY display_framebuf.c)
|
||||
zephyr_sources_ifdef(CONFIG_ILI9340 display_ili9340.c)
|
||||
zephyr_sources_ifdef(CONFIG_ST7789V display_st7789v.c)
|
||||
|
||||
zephyr_sources_ifdef(CONFIG_MICROBIT_DISPLAY
|
||||
mb_display.c
|
||||
|
@ -20,3 +21,7 @@ zephyr_sources_ifdef(CONFIG_ILI9340_LCD_ADAFRUIT_1480
|
|||
zephyr_sources_ifdef(CONFIG_ILI9340_LCD_SEEED_TFTV2
|
||||
display_ili9340_seeed_tftv2.c
|
||||
)
|
||||
|
||||
zephyr_sources_ifdef(CONFIG_ST7789V_LCD_TL019FQV01
|
||||
display_st7789v_tl019fqv01.c
|
||||
)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue