2021-02-11 16:18:33 +08:00
|
|
|
import os
|
|
|
|
import rtconfig
|
2021-02-06 07:36:26 +08:00
|
|
|
from building import *
|
|
|
|
|
2021-02-11 16:18:33 +08:00
|
|
|
Import('SDK_LIB')
|
|
|
|
|
2021-02-06 07:36:26 +08:00
|
|
|
cwd = GetCurrentDir()
|
|
|
|
|
2021-02-11 16:18:33 +08:00
|
|
|
# add general drivers
|
|
|
|
src = Split('''
|
|
|
|
board.c
|
|
|
|
''')
|
|
|
|
|
|
|
|
path = [cwd]
|
|
|
|
|
|
|
|
startup_path_prefix = SDK_LIB
|
|
|
|
|
2022-05-31 06:04:05 +08:00
|
|
|
if rtconfig.PLATFORM in ['gcc']:
|
2021-02-11 16:18:33 +08:00
|
|
|
src += [startup_path_prefix + '/MAX32660PeriphDriver/CMSIS/Device/Maxim/MAX32660/Source/GCC/startup_max32660.S']
|
2022-04-20 09:56:04 +08:00
|
|
|
elif rtconfig.PLATFORM in ['armcc', 'armclang']:
|
2021-02-11 16:18:33 +08:00
|
|
|
src += [startup_path_prefix + '/MAX32660PeriphDriver/CMSIS/Device/Maxim/MAX32660/Source/ARM/startup_max32660.s']
|
2022-05-31 06:11:15 +08:00
|
|
|
elif rtconfig.PLATFORM in ['iccarm']:
|
2021-02-11 16:18:33 +08:00
|
|
|
src += [startup_path_prefix + '/MAX32660PeriphDriver/CMSIS/Device/Maxim/MAX32660/Source/ARM/startup_max32660.s']
|
|
|
|
|
|
|
|
|
|
|
|
group = DefineGroup('Drivers', src, depend = [''], CPPPATH = path)
|
|
|
|
|
2021-02-06 07:36:26 +08:00
|
|
|
Return('group')
|