01a6563249
* [arduino] 初步实现Arduino生态兼容组件 * [stm32f475] 增加PC2 作为ADC1_IN3 * [stm32l475][port] 将路径Arduino改为arduino
13 lines
245 B
Python
13 lines
245 B
Python
from building import *
|
|
|
|
cwd = GetCurrentDir()
|
|
src = []
|
|
inc = [cwd]
|
|
|
|
if GetDepend('RT_USING_ARDUINO_UNO_LAYOUT'):
|
|
src += ['arduino_layout.c']
|
|
|
|
group = DefineGroup('Arduino', src, depend = ['RT_USING_ARDUINO'], CPPPATH = inc)
|
|
|
|
Return('group')
|