添加新的mtd接口

This commit is contained in:
heyuanjie87
2018-09-18 18:41:33 +08:00
parent 1abe83531c
commit bc5a5f89e9
9 changed files with 1264 additions and 1 deletions
+11
View File
@@ -9,6 +9,17 @@ depend = []
CPPPATH = [cwd + '/../include']
group = []
if GetDepend(['RT_USING_MTD']):
src += ['mtd.c']
depend += ['RT_USING_MTD']
if GetDepend(['MTD_USING_NOR']):
src += ['mtdnor.c']
depend += ['MTD_USING_NOR']
if GetDepend(['MTD_USING_NAND']):
src += ['mtdnand.c']
depend += ['MTD_USING_NAND']
if GetDepend(['RT_USING_MTD_NOR']):
src += ['mtd_nor.c']
depend += ['RT_USING_MTD_NOR']