You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
506 B
16 lines
506 B
set(srcs "diskio/diskio.c"
|
|
"diskio/diskio_rawflash.c"
|
|
"diskio/diskio_sdmmc.c"
|
|
"diskio/diskio_wl.c"
|
|
"src/ff.c"
|
|
"port/freertos/ffsystem.c"
|
|
"src/ffunicode.c"
|
|
"vfs/vfs_fat.c"
|
|
"vfs/vfs_fat_sdmmc.c"
|
|
"vfs/vfs_fat_spiflash.c")
|
|
|
|
idf_component_register(SRCS ${srcs}
|
|
INCLUDE_DIRS diskio vfs src
|
|
REQUIRES wear_levelling sdmmc
|
|
PRIV_REQUIRES vfs
|
|
)
|
|
|