/AliOS-Things-master/components/fatfs/ |
A D | README.md | 1 @page fatfs 3 [更正文档](https://gitee.com/alios-things/fatfs/edit/master/README.md)      [贡献说明](… 6 **fatfs** is a generic FAT/exFAT filesystem module for small embedded system. The fatfs module is w… 24 fatfs 41 │ ├── fatfs.h 86 - fatfs: master # helloworld_demo中引入fatfs组件 96 aos install fatfs 100 上述命令执行成功后,组件源码则被下载到了./components/fatfs路径中。 104 在fatfs组件的package.yaml中添加[example示例代码](https://gitee.com/alios-things/a2sa/tree/master/example): 137 fatfs component example start! [all …]
|
/AliOS-Things-master/components/py_engine/engine/extmod/ |
A D | vfs_fat.c | 54 FRESULT res = f_stat(&vfs->fatfs, path, &fno); in fat_vfs_import_stat() 71 vfs->fatfs.drv = vfs; in fat_vfs_make_new() 79 FRESULT res = f_mount(&vfs->fatfs); in fat_vfs_make_new() 94 f_umount(&self->fatfs); in fat_vfs_del() 198 FRESULT res = f_stat(&self->fatfs, path, &fno); in fat_vfs_remove_internal() 206 res = f_unlink(&self->fatfs, path); in fat_vfs_remove_internal() 250 FRESULT res = f_mkdir(&self->fatfs, path); in fat_vfs_mkdir() 265 FRESULT res = f_chdir(&self->fatfs, path); in fat_vfs_chdir() 342 FATFS *fatfs = &self->fatfs; in fat_vfs_statvfs() local 343 FRESULT res = f_getfree(fatfs, &nclst); in fat_vfs_statvfs() [all …]
|
A D | vfs_fat.h | 36 FATFS fatfs; member
|
A D | vfs_fat_file.c | 200 FRESULT res = f_open(&vfs->fatfs, &o->fp, fname, mode); in file_open()
|
/AliOS-Things-master/components/fatfs/src/ |
A D | fatfs_vfs.c | 571 FATFS *fatfs = NULL; in fatfs_dev_register() local 582 fatfs = (FATFS *)aos_malloc(sizeof(FATFS)); in fatfs_dev_register() 583 if (!fatfs) { in fatfs_dev_register() 587 err = f_mount(fatfs, g_fsid[index].id, 1); in fatfs_dev_register() 590 g_fatfs[index] = fatfs; in fatfs_dev_register() 613 err = f_mount(fatfs, g_fsid[index].id, 1); in fatfs_dev_register() 616 g_fatfs[index] = fatfs; in fatfs_dev_register() 622 aos_free(fatfs); in fatfs_dev_register()
|
A D | ff.c | 4430 FATFS** fatfs /* Pointer to return pointer to corresponding filesystem object */ argument 4443 *fatfs = fs; /* Return ptr to the fs object */
|
/AliOS-Things-master/components/py_engine/ |
A D | README.md | 41 * fatfs 53 > fatfs,默认1,可按照实际需要修改yaml配置如:
|
/AliOS-Things-master/components/fatfs/example/ |
A D | fatfs_example.c | 85 ALIOS_CLI_CMD_REGISTER(fatfs_comp_example, fatfs_example, fatfs component base example)
|
/AliOS-Things-master/solutions/tflite_micro_speech_demo/ |
A D | package.yaml | 26 - fatfs: master
|
/AliOS-Things-master/components/py_engine/adapter/haas/ |
A D | modmachine.c | 111 f_getfree(&vfs_fat->fatfs, &nclst); in machine_info() 113 (uint)(nclst * vfs_fat->fatfs.csize * 512)); in machine_info()
|
/AliOS-Things-master/components/py_engine/adapter/haas510/ |
A D | modmachine.c | 102 f_getfree(&vfs_fat->fatfs, &nclst); in machine_info() 103 printf("LFS free: %u bytes\n", (uint)(nclst * vfs_fat->fatfs.csize * 512)); in machine_info()
|
/AliOS-Things-master/components/py_engine/adapter/haas600/ |
A D | modmachine.c | 102 f_getfree(&vfs_fat->fatfs, &nclst); in machine_info() 103 printf("LFS free: %u bytes\n", (uint)(nclst * vfs_fat->fatfs.csize * 512)); in machine_info()
|
/AliOS-Things-master/documentation/manual/ |
A D | component.md | 40 @subpage fatfs \n
|
/AliOS-Things-master/components/init/ |
A D | README.md | 18 - fatfs: fatfs_register
|
/AliOS-Things-master/components/ulog/ |
A D | README.md | 47 * fatfs
|
/AliOS-Things-master/components/oss/ |
A D | README.md | 59 - fatfs
|
/AliOS-Things-master/components/uvoice/ |
A D | README.md | 323 要支持播放列表功能,需要有SD卡,并使能fatfs文件系统
|
/AliOS-Things-master/components/py_engine/engine/lib/oofatfs/ |
A D | ff.h | 350 int ff_cre_syncobj (FATFS *fatfs, FF_SYNC_t* sobj); /* Create a sync object */
|
/AliOS-Things-master/components/fatfs/include/ |
A D | ff.h | 264 FRESULT f_getfree (const TCHAR* path, DWORD* nclst, FATFS** fatfs); /* Get number of free clusters …
|
/AliOS-Things-master/documentation/doxygen/ |
A D | Doxyfile-AOS | 891 ../../components/fatfs/README.md \ 1086 ../../components/fatfs/example \
|