mirror of
https://github.com/RT-Thread/rt-thread.git
synced 2025-01-19 05:23:31 +08:00
2878566c92
* 增加 野火 启明6M5 板级支持包 * 修复串口引脚描述错误 * 上一版提交,UART端口改了,但是uart编号漏改 Co-authored-by: Liuxiequan <liuxiequan@cvte.com>
20 lines
461 B
Python
20 lines
461 B
Python
Import('RTT_ROOT')
|
|
Import('rtconfig')
|
|
from building import *
|
|
|
|
cwd = GetCurrentDir()
|
|
src = []
|
|
group = []
|
|
CPPPATH = []
|
|
|
|
if rtconfig.PLATFORM in ['iccarm']:
|
|
print("\nThe current project does not support IAR build\n")
|
|
Return('group')
|
|
elif rtconfig.PLATFORM in ['gcc', 'armclang']:
|
|
if GetOption('target') != 'mdk5':
|
|
src = Glob('*.c')
|
|
CPPPATH = [cwd, ]
|
|
|
|
group = DefineGroup('ra_gen', src, depend = [''], CPPPATH = CPPPATH)
|
|
Return('group')
|