mirror of
https://github.com/RT-Thread/rt-thread.git
synced 2026-02-05 05:23:46 +00:00
1. Add backlight framework for graphic. 2. Add framebuffer and plane, power, EDID for graphic framework 3. Add boot logo render for graphic 4. Update lcd.h Signed-off-by: GuEe-GUI <2991707448@qq.com>
15 lines
318 B
Plaintext
15 lines
318 B
Plaintext
config RT_USING_LCD
|
|
bool "Using LCD graphic drivers" if !RT_USING_DM
|
|
default n
|
|
|
|
menuconfig RT_USING_GRAPHIC
|
|
bool "Using Graphics device drivers"
|
|
depends on RT_USING_DM
|
|
default n
|
|
|
|
if RT_USING_GRAPHIC
|
|
rsource "backlight/Kconfig"
|
|
rsource "framebuffer/Kconfig"
|
|
rsource "logo/Kconfig"
|
|
endif
|