mirror of
https://github.com/RT-Thread/rt-thread.git
synced 2026-02-05 05:23:46 +00:00
1. Generic GPIO based backlight driver 2. Generic PWM based backlight driver 3. Simple framebuffer support 4. Standard 224-color RT-Thread logo 5. Standard 224-color RT-Thread white logo Signed-off-by: GuEe-GUI <2991707448@qq.com>
20 lines
359 B
Python
20 lines
359 B
Python
from building import *
|
|
|
|
group = []
|
|
|
|
if not GetDepend(['RT_GRAPHIC_FB']):
|
|
Return('group')
|
|
|
|
cwd = GetCurrentDir()
|
|
list = os.listdir(cwd)
|
|
CPPPATH = [cwd + '/../../include']
|
|
|
|
src = []
|
|
|
|
if GetDepend(['RT_GRAPHIC_FB_SIMPLE']):
|
|
src += ['fb-simple.c']
|
|
|
|
group = DefineGroup('DeviceDrivers', src, depend = [''], CPPPATH = CPPPATH)
|
|
|
|
Return('group')
|