Files
rt-thread/bsp/mm32f526x/board/SConscript
Chasel 94952b18fc [bsp][mm32f526x] 1.add mm32f526x bsp; (#9940)
[bsp][mm32f526x] 1.add a bsp for mm32f526x;
2025-02-03 23:29:27 +08:00

19 lines
289 B
Python

# RT-Thread building script for component
import os
import rtconfig
from building import *
cwd = GetCurrentDir()
# add the general drivers.
src = ['board.c']
src += ['mm32_msp.c']
CPPPATH = [cwd]
group = DefineGroup('Drivers', src, depend = [''], CPPPATH = CPPPATH)
Return('group')