21 lines
369 B
Python
21 lines
369 B
Python
|
# RT-Thread building script for component
|
||
|
|
||
|
from building import *
|
||
|
|
||
|
cwd = GetCurrentDir()
|
||
|
|
||
|
# add the general drivers.
|
||
|
src = Split("""
|
||
|
board.c
|
||
|
""")
|
||
|
|
||
|
# add serial driver code
|
||
|
if GetDepend('BSP_USING_UART1') or GetDepend('BSP_USING_UART2'):
|
||
|
src += ['drv_uart.c']
|
||
|
|
||
|
CPPPATH = [cwd]
|
||
|
|
||
|
group = DefineGroup('Drivers', src, depend = [''], CPPPATH = CPPPATH)
|
||
|
|
||
|
Return('group')
|