mirror of
https://github.com/RT-Thread/rt-thread.git
synced 2025-01-30 13:00:26 +08:00
df715100f2
* -以ev_hc32f4a0_lqfp176为模板进行修改 * -修改对应引脚 * -更新readme * -update readme * -添加 lckfb-hc32f4a0-lqfp100
21 lines
404 B
Python
21 lines
404 B
Python
|
|
from building import *
|
|
import rtconfig
|
|
|
|
cwd = GetCurrentDir()
|
|
|
|
src = []
|
|
|
|
src += Glob('*.c')
|
|
CPPPATH = [cwd]
|
|
LOCAL_CFLAGS = ''
|
|
|
|
if rtconfig.PLATFORM in ['gcc', 'armclang']:
|
|
LOCAL_CFLAGS += ' -std=c99'
|
|
elif rtconfig.PLATFORM in ['armcc']:
|
|
LOCAL_CFLAGS += ' --c99'
|
|
|
|
group = DefineGroup('FAL', src, depend = ['RT_USING_FAL'], CPPPATH = CPPPATH, LOCAL_CFLAGS = LOCAL_CFLAGS)
|
|
|
|
Return('group')
|