4
0
mirror of https://github.com/RT-Thread/rt-thread.git synced 2025-02-20 02:21:25 +08:00
liYangYang 2657fe9979 [bsp][cvitek] 在Milk-V Duo 256M开发板中支持ARM核运行RT-Thread标准版和Smart版内核 (#8800)
* Supports ARM core of Milk-V Duo 256M development board

* add fip.bin(arm)
2024-04-16 22:59:03 -04:00

10 lines
205 B
Python
Executable File

from building import *
cwd = GetCurrentDir()
src = Glob('*.c') + Glob('*.cpp') + Glob('*.S')
CPPPATH = [cwd]
group = DefineGroup('Driver', src, depend = [''], CPPPATH = CPPPATH)
Return('group')