| 1234567891011121314151617 |
- import os
- from building import *
- cwd = GetCurrentDir()
- # add general drivers
- src = Split('''
- board.c
- ''')
- path = [cwd]
- # FT32F407xE
- # You can select chips from the list above
- CPPDEFINES = ['FT32F407xE']
- group = DefineGroup('Drivers', src, depend = [''], CPPPATH = path, CPPDEFINES = CPPDEFINES)
- Return('group')
|