22 lines
384 B
Python
Raw Normal View History

2024-08-05 20:57:09 +08:00
from building import *
group = []
if not GetDepend(['RT_USING_PIN']):
Return('group')
cwd = GetCurrentDir()
CPPPATH = [cwd + '/../include']
2025-03-14 11:04:51 +08:00
src = ['dev_pin.c']
2024-08-05 20:57:09 +08:00
if GetDepend(['RT_USING_DM']):
2025-03-14 11:04:51 +08:00
src += ['dev_pin_dm.c']
2024-08-05 20:57:09 +08:00
if GetDepend(['RT_USING_OFW']):
2025-03-14 11:04:51 +08:00
src += ['dev_pin_ofw.c']
2024-08-05 20:57:09 +08:00
group = DefineGroup('DeviceDrivers', src, depend = [''], CPPPATH = CPPPATH)
Return('group')