Files
rt-thread/bsp/rockchip/dm/pin/SConscript
GuEe-GUI 45fe9ee96b [bsp][rockchip] Port to DM
RK3588/RK3576/RK356x/RK3308

Signed-off-by: GuEe-GUI <2991707448@qq.com>
2026-01-08 21:33:25 +08:00

14 lines
303 B
Python
Executable File

from building import *
group = []
src = []
cwd = GetCurrentDir()
CPPPATH = [cwd + '/../include', cwd + '/../../../../components/drivers/pin']
if GetDepend(['RT_PIN_ROCKCHIP']):
src += ['pin-rockchip.c']
group = DefineGroup('DeviceDrivers', src, depend = [''], CPPPATH = CPPPATH)
Return('group')