34 lines
677 B
Python
34 lines
677 B
Python
Import('RTT_ROOT')
|
|
Import('rtconfig')
|
|
from building import *
|
|
|
|
cwd = GetCurrentDir()
|
|
|
|
# add the general drivers.
|
|
#Src/board.c
|
|
src = Split("""
|
|
Src/main.c
|
|
Src/gpio.c
|
|
Src/usart.c
|
|
Src/stm32f0xx_it.c
|
|
Src/stm32f0xx_hal_msp.c
|
|
Src/system_stm32f0xx.c
|
|
""")
|
|
|
|
if GetDepend(['RT_USING_PIN']):
|
|
src += ['drv_gpio.c']
|
|
if GetDepend(['RT_USING_SERIAL']):
|
|
src += ['drv_usart.c']
|
|
# if GetDepend(['RT_USING_SPI']):
|
|
# src += ['drv_spi.c']
|
|
# if GetDepend(['RT_USING_USB_DEVICE']):
|
|
# src += ['drv_usb.c']
|
|
# if GetDepend(['RT_USING_SDCARD']):
|
|
# src += ['drv_sdcard.c']
|
|
|
|
CPPPATH = [cwd + '/Inc']
|
|
|
|
group = DefineGroup('Drivers', src, depend = [''], CPPPATH = CPPPATH)
|
|
|
|
Return('group')
|