用于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.
 
 
 
 
 
 

48 lines
1.4 KiB

import os
from building import *
cwd = GetCurrentDir()
# add general drivers
src = Split('''
board.c
CubeMX_Config/Src/stm32l4xx_hal_msp.c
''')
path = [cwd]
path += [os.path.join(cwd, 'CubeMX_Config', 'Inc')]
if not GetDepend(['RT_USING_NANO']):
if GetDepend(['BSP_USING_KEY']):
src += [os.path.join('ports', 'drv_key.c')]
if GetDepend(['BSP_USING_QSPI_FLASH']):
src += [os.path.join('ports', 'drv_qspi_flash.c')]
if GetDepend(['BSP_USING_FS']):
src += [os.path.join('ports', 'drv_filesystem.c')]
if GetDepend(['BSP_USING_SPI_FLASH_LITTLEFS']):
src += [os.path.join('ports', 'fal', 'fal_spi_flash_sfud_port.c')]
path += [os.path.join(cwd, 'ports', 'fal')]
if GetDepend(['RT_USING_SENSOR']):
src += [os.path.join('ports', 'drv_sensors.c')]
if GetDepend(['BSP_USING_AUDIO']):
src += [os.path.join('ports', 'audio', 'drv_es8388.c')]
src += [os.path.join('ports', 'audio', 'drv_sound.c')]
if GetDepend(['BSP_USING_AUDIO_RECORD']):
src += [os.path.join('ports', 'audio', 'drv_mic.c')]
if GetDepend(['BSP_USING_STM32_SDIO']):
src += [os.path.join('ports', 'drv_sdio_adapter.c')]
if GetDepend(['BSP_USING_AUDIO']):
path += [os.path.join(cwd, 'ports', 'audio')]
CPPDEFINES = ['STM32L475xx']
group = DefineGroup('Drivers', src, depend = [''], CPPPATH = path, CPPDEFINES = CPPDEFINES)
Return('group')