mirror of
https://github.com/nodemcu/nodemcu-firmware.git
synced 2025-02-06 21:18:25 +08:00
Files changed only by the author of FatFS (only updated to new version): - 00history.txt - 00readme.txt - ff.c - ff.h - ffunicode.c - diskio.h - integer.h - files in `option` folder except `syscall.c` Changes: - removed option folder (now everything is in ffunicode.c) - modified Makefile to support new version of FatFS - removed syscall.c and modified ffsystem.c from FatFS author instead - modified files: diskio.c, ffconf.h to mimic changes from new version - modified files: fatfs_config.h, myfatfs.c because of changes of configuration keywords in 0.13 version - removed empty lines from beginning of files: fatfs_prefix_lib.h, myfatfs.c, sdcard.c - changed version number in documentation
24 lines
847 B
C
24 lines
847 B
C
#define f_chdir fatfslib_f_chdir
|
|
#define f_chdrive fatfslib_f_chdrive
|
|
#define f_chmod fatfslib_f_chmod
|
|
#define f_close fatfslib_f_close
|
|
#define f_closedir fatfslib_f_closedir
|
|
#define f_getcwd fatfslib_f_getcwd
|
|
#define f_getfree fatfslib_f_getfree
|
|
#define f_getlabel fatfslib_f_getlabel
|
|
#define f_lseek fatfslib_f_lseek
|
|
#define f_mkdir fatfslib_f_mkdir
|
|
#define f_mount fatfslib_f_mount
|
|
#define f_open fatfslib_f_open
|
|
#define f_opendir fatfslib_f_opendir
|
|
#define f_read fatfslib_f_read
|
|
#define f_readdir fatfslib_f_readdir
|
|
#define f_rename fatfslib_f_rename
|
|
#define f_setlabel fatfslib_f_setlabel
|
|
#define f_stat fatfslib_f_stat
|
|
#define f_sync fatfslib_f_sync
|
|
#define f_truncate fatfslib_f_truncate
|
|
#define f_unlink fatfslib_f_unlink
|
|
#define f_utime fatfslib_f_utime
|
|
#define f_write fatfslib_f_write
|