mirror of
https://github.com/RT-Thread/rt-thread.git
synced 2025-12-27 09:38:24 +00:00
add STM32F107 porting.
git-svn-id: https://rt-thread.googlecode.com/svn/trunk@1505 bbd45198-f89e-11dd-88c7-29a3b14d5316
This commit is contained in:
19
bsp/stm32f107/SConscript
Normal file
19
bsp/stm32f107/SConscript
Normal file
@@ -0,0 +1,19 @@
|
||||
import rtconfig
|
||||
Import('RTT_ROOT')
|
||||
from building import *
|
||||
|
||||
src_bsp = ['application.c', 'startup.c', 'board.c', 'stm32f10x_it.c', 'system_stm32f10x.c']
|
||||
src_drv = ['usart.c', 'serial.c']
|
||||
|
||||
if GetDepend('RT_USING_DFS'):
|
||||
src_drv += ['msd.c']
|
||||
|
||||
if GetDepend('RT_USING_LWIP'):
|
||||
src_drv += ['stm32_eth.c']
|
||||
|
||||
src = src_bsp + src_drv
|
||||
CPPPATH = [str(Dir('#'))]
|
||||
CPPDEFINES = ['USE_STDPERIPH_DRIVER', rtconfig.STM32_TYPE]
|
||||
group = DefineGroup('Startup', src, depend = [''], CPPPATH = CPPPATH, CPPDEFINES = CPPDEFINES)
|
||||
|
||||
Return('group')
|
||||
Reference in New Issue
Block a user