d98a4ec1b5
* [arduino][f411-blackpill] 已配置cubeMX,并生成pinout文件 Signed-off-by: 褚仕成 <1468559561@qq.com> * [arduino][f411-blackpill] 完善cubeMX配置 * 编辑 Kconfig 文件 * 完善Kconfig文件中PWM的配置 * 将rtduino的配置移至Onboard Peripheral Drivers * 使能SPI * Update Sconscript Signed-off-by: 褚仕成 <1468559561@qq.com> Co-authored-by: Man, Jianting (Meco) <920369182@qq.com>
10 lines
193 B
Plaintext
10 lines
193 B
Plaintext
from building import *
|
|
|
|
cwd = GetCurrentDir()
|
|
src = Glob('*.c') + Glob('*.cpp')
|
|
inc = [cwd]
|
|
|
|
group = DefineGroup('RTduino', src, depend = ['PKG_USING_RTDUINO'], CPPPATH = inc)
|
|
|
|
Return('group')
|