5b17eeeb9b
* [stm32][nucleo-f072] add arduino gpio support * 完善stm32f401nucleo的基本配置 * 修改led引脚描述 * 潘多拉增加arduino引脚别名 * [ARDUINO]STM32L072RB 增加ADC A0-A5的引脚配置 * add pwm
16 lines
355 B
Python
16 lines
355 B
Python
from building import *
|
|
import os
|
|
|
|
cwd = GetCurrentDir()
|
|
CPPPATH = [cwd]
|
|
src = ['main.c']
|
|
|
|
group = DefineGroup('Applications', src, depend = [''], CPPPATH = CPPPATH)
|
|
|
|
list = os.listdir(cwd)
|
|
for item in list:
|
|
if os.path.isfile(os.path.join(cwd, item, 'SConscript')):
|
|
group = group + SConscript(os.path.join(item, 'SConscript'))
|
|
|
|
Return('group')
|