mirror of
https://github.com/RT-Thread/rt-thread.git
synced 2026-08-24 19:28:30 +08:00
21 lines
452 B
Plaintext
21 lines
452 B
Plaintext
menuconfig RT_GRAPHIC_FB
|
|
bool "LCD and Frame buffer support"
|
|
select RT_USING_LCD
|
|
default y
|
|
|
|
config RT_GRAPHIC_FB_ILI9486
|
|
bool "ILI9486 framebuffer support"
|
|
depends on RT_GRAPHIC_FB
|
|
depends on RT_USING_SPI
|
|
default n
|
|
|
|
config RT_GRAPHIC_FB_SIMPLE
|
|
bool "Simple framebuffer support"
|
|
depends on RT_GRAPHIC_FB
|
|
depends on RT_USING_OFW
|
|
default y
|
|
|
|
if RT_GRAPHIC_FB
|
|
osource "$(SOC_DM_GRAPHIC_FB_DIR)/Kconfig"
|
|
endif
|