Add lvgl_8.1.0 support for raspberry_pi pico

This commit is contained in:
Rbb666
2022-01-12 18:56:37 +08:00
parent ea9c6c94e0
commit 814c15cdbc
19 changed files with 915 additions and 7 deletions
+20
View File
@@ -0,0 +1,20 @@
import os
import rtconfig
from building import *
cwd = GetCurrentDir()
# add general drivers
src = Split('''
board.c
''')
path = [cwd]
path += [cwd + '/ports/lcd']
if GetDepend(['BSP_USING_LVGL']):
path += [cwd + '/ports/lcd']
group = DefineGroup('Drivers', src, depend = [''], CPPPATH = path)
Return('group')