mirror of
https://github.com/RT-Thread/rt-thread.git
synced 2025-01-16 18:53:31 +08:00
01a6563249
* [arduino] 初步实现Arduino生态兼容组件 * [stm32f475] 增加PC2 作为ADC1_IN3 * [stm32l475][port] 将路径Arduino改为arduino
24 lines
496 B
Python
24 lines
496 B
Python
from building import *
|
|
import os
|
|
|
|
cwd = GetCurrentDir()
|
|
|
|
src = ['main.c']
|
|
|
|
if GetDepend(['PKG_USING_NRF24L01']):
|
|
src += ['nrf24l01_init.c']
|
|
|
|
if GetDepend(['RT_USING_ARDUINO']):
|
|
src += ['arduino_main.cpp']
|
|
|
|
CPPPATH = [cwd]
|
|
|
|
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')
|