Files
stm32f4_rtt_5.2.0/RT_Thread/components/drivers/phye/SConscript
2025-06-19 21:57:12 +08:00

16 lines
260 B
Python

from building import *
group = []
if not GetDepend(['RT_USING_PHYE']):
Return('group')
cwd = GetCurrentDir()
CPPPATH = [cwd + '/../include']
src = ['phye.c']
group = DefineGroup('DeviceDrivers', src, depend = [''], CPPPATH = CPPPATH)
Return('group')