59f10fd704
为ch32v307适配rt-duino,支持pwm、gpio、uart、iic,暂不支持 spi。 已在ch32v307评估板测试。 测试内容包括串口打印、呼吸灯、AHT10温湿度读取等。
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')
|