12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- import rtconfig
- from building import *
- # get current directory
- cwd = GetCurrentDir()
- # The set of source files associated with this SConscript file.
- src = Split('''
- CMSIS/GD/GD32F4xx/Source/system_gd32f4xx.c
- GD32F4xx_standard_peripheral/Source/gd32f4xx_gpio.c
- GD32F4xx_standard_peripheral/Source/gd32f4xx_rcu.c
- GD32F4xx_standard_peripheral/Source/gd32f4xx_exti.c
- GD32F4xx_standard_peripheral/Source/gd32f4xx_misc.c
- GD32F4xx_standard_peripheral/Source/gd32f4xx_syscfg.c
- ''')
-
- if GetDepend(['RT_USING_SERIAL']):
- src += ['GD32F4xx_standard_peripheral/Source/gd32f4xx_usart.c']
-
- if GetDepend(['RT_USING_I2C']):
- src += ['GD32F4xx_standard_peripheral/Source/gd32f4xx_i2c.c']
- if GetDepend(['RT_USING_SPI']):
- src += ['GD32F4xx_standard_peripheral/Source/gd32f4xx_spi.c']
- if GetDepend(['RT_USING_CAN']):
- src += ['GD32F4xx_standard_peripheral/Source/gd32f4xx_can.c']
- if GetDepend(['BSP_USING_ETH']):
- src += ['GD32F4xx_standard_peripheral/Source/gd32f4xx_enet.c']
- if GetDepend(['RT_USING_ADC']):
- src += ['GD32F4xx_standard_peripheral/Source/gd32f4xx_adc.c']
- if GetDepend(['RT_USING_DAC']):
- src += ['GD32F4xx_standard_peripheral/Source/gd32f4xx_dac.c']
- if GetDepend(['RT_USING_RTC']):
- src += ['GD32F4xx_standard_peripheral/Source/gd32f4xx_rtc.c']
- if GetDepend(['RT_USING_WDT']):
- src += ['GD32F4xx_standard_peripheral/Source/gd32f4xx_wwdgt.c']
- src += ['GD32F4xx_standard_peripheral/Source/gd32f4xx_fwdgt.c']
- if GetDepend(['RT_USING_SDIO']):
- src += ['GD32F4xx_standard_peripheral/Source/gd32f4xx_sdio.c']
- path = [
- cwd + '/CMSIS/GD/GD32F4xx/Include',
- cwd + '/CMSIS',
- cwd + '/GD32F4xx_standard_peripheral/Include',]
- CPPDEFINES = ['USE_STDPERIPH_DRIVER']
- group = DefineGroup('Libraries', src, depend = [''], CPPPATH = path, CPPDEFINES = CPPDEFINES)
- Return('group')
|