2021-08-06 16:59:04 +08:00
|
|
|
# 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']
|
|
|
|
|
|
|
|
# add gpio driver code
|
|
|
|
if GetDepend(['BSP_USING_GPIO']):
|
|
|
|
src += ['drv_gpio.c']
|
|
|
|
|
2021-08-09 17:51:55 +08:00
|
|
|
# add gpio driver code
|
|
|
|
if GetDepend(['BSP_USING_OCFLASH']):
|
|
|
|
src += ['drv_flash.c']
|
2021-08-06 16:59:04 +08:00
|
|
|
CPPPATH = [cwd]
|
|
|
|
|
|
|
|
group = DefineGroup('Drivers', src, depend = [''], CPPPATH = CPPPATH)
|
|
|
|
|
|
|
|
Return('group')
|