2024-11-05 22:36:59 -05:00

14 lines
246 B
Python

from building import *
cwd = GetCurrentDir()
CPPPATH = [cwd]
src = []
if GetDepend(['RT_HWTIMER_ROCKCHIP']):
src += ['hwtimer-rockchip_timer.c']
group = DefineGroup('DeviceDrivers', src, depend = [''], CPPPATH = CPPPATH)
Return('group')