drivers: display_st7789v: remove obsolete Kconfig options

Remove obsolete Kconfig options.

Signed-off-by: Johann Fischer <j.fischer@phytec.de>
This commit is contained in:
Johann Fischer 2019-11-18 22:23:20 +01:00 committed by Anas Nashif
commit 0512c3e7d0
2 changed files with 0 additions and 41 deletions

View file

@ -21,7 +21,3 @@ 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
)

View file

@ -11,16 +11,6 @@ menuconfig ST7789V
if ST7789V
choice
prompt "LCD"
help
Specify the type of LCD connected to the ST7789V display controller.
config ST7789V_LCD_TL019FQV01
bool "TDO TL019FQV01"
endchoice
choice
prompt "Color pixel format"
default ST7789V_RGB565
@ -35,31 +25,4 @@ config ST7789V_RGB565
endchoice
if ST7789V_RGB565
config ST7789V_SWAP_PIXEL_LCD_ENDIANNESS
bool "Swap pixel endianness at LCD"
help
Pixel data bytes are swapped when being blitted to the LCD.
Note that this isn't just a swap of RGB <--> BGR, (if the endianness is
swapped then the 3 lowest bits of G are sent first/last).
You may want to enable this if you are using lvgl and your colors
don't look right.
config ST7789V_REVERSE_LCD_RGB_ORDER
bool "Reverse draw order of controller ram to LCD"
help
This reverses the order that the controller draws RGB to the LCD.
config ST7789V_REVERSE_X
bool "Reverse X axis"
help
Address pixels from right to left.
config ST7789V_REVERSE_Y
bool "Reverse Y axis"
help
Address pixels from bottom to top.
endif # ST7789V_RGB565
endif # ST7789V