2022-04-08 15:31:35 +08:00
|
|
|
import os
|
|
|
|
import rtconfig
|
|
|
|
from building import *
|
|
|
|
|
|
|
|
Import('SDK_LIB')
|
|
|
|
|
|
|
|
cwd = GetCurrentDir()
|
|
|
|
|
|
|
|
# add general drivers
|
|
|
|
src = Split('''
|
|
|
|
src/board.c
|
|
|
|
src/at32_msp.c
|
|
|
|
''')
|
|
|
|
|
|
|
|
path = [cwd]
|
|
|
|
path += [cwd + '/inc']
|
|
|
|
|
|
|
|
startup_path_prefix = SDK_LIB
|
|
|
|
|
2022-05-31 06:04:05 +08:00
|
|
|
if rtconfig.PLATFORM in ['gcc']:
|
2022-05-19 11:07:28 +08:00
|
|
|
src += [startup_path_prefix + '/AT32F435_437_Firmware_Library/cmsis/cm4/device_support/startup/gcc/startup_at32f435_437.s']
|
2022-04-20 09:56:04 +08:00
|
|
|
elif rtconfig.PLATFORM in ['armcc', 'armclang']:
|
2022-05-19 11:07:28 +08:00
|
|
|
src += [startup_path_prefix + '/AT32F435_437_Firmware_Library/cmsis/cm4/device_support/startup/mdk/startup_at32f435_437.s']
|
2022-04-08 15:31:35 +08:00
|
|
|
elif rtconfig.CROSS_TOOL == 'iar':
|
2022-05-19 11:07:28 +08:00
|
|
|
src += [startup_path_prefix + '/AT32F435_437_Firmware_Library/cmsis/cm4/device_support/startup/iar/startup_at32f435_437.s']
|
2022-04-08 15:31:35 +08:00
|
|
|
|
|
|
|
CPPDEFINES = ['AT32F437ZMT7']
|
|
|
|
group = DefineGroup('Drivers', src, depend = [''], CPPPATH = path, CPPDEFINES = CPPDEFINES)
|
|
|
|
Return('group')
|