用于EagleEye3.0 规则集漏报和误报测试的示例项目,项目收集于github和gitee
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

29 lines
676 B

# RT-Thread building script for component
from building import *
import os
cwd = GetCurrentDir()
# add the general drivers.
src = Split("""
board.c
""")
# add gpio driver code
if GetDepend(['BSP_USING_GPIO']):
src += ['drv_gpio.c']
# add serial driver code
if GetDepend('BSP_USING_UART0') or GetDepend('BSP_USING_UART1') or GetDepend('BSP_USING_UART2') or GetDepend('BSP_USING_UART3'):
src += ['drv_uart.c']
# add inter flash fal filesystem
if GetDepend('BSP_USING_INTER_FLASH'):
src += Glob('ports/*.c')
path_ports = os.path.join(cwd,'ports')
CPPPATH = [cwd,path_ports]
group = DefineGroup('Drivers', src, depend = [''], CPPPATH = CPPPATH)
Return('group')