[bsp]update x1000 bsp driver

This commit is contained in:
tangyuxin
2017-11-11 13:53:20 +08:00
parent f7a6078c5c
commit d724e75f22
102 changed files with 22111 additions and 1488 deletions
+22
View File
@@ -0,0 +1,22 @@
from building import *
cwd = GetCurrentDir()
CPPPATH = [cwd]
ft_src = Split("""
focaltech_ts.c
""")
gt_src = Split("""
gt9xx.c
""")
src = ()
if GetDepend('RT_USING_FT6x06'):
src = ft_src
if GetDepend('RT_USING_GT9XX'):
src = gt_src
group = DefineGroup('drv_touch', src, depend = ['RT_USING_TOUCH'], CPPPATH = CPPPATH)
Return('group')