mirror of
https://github.com/nodemcu/nodemcu-firmware.git
synced 2025-01-30 21:12:55 +08:00
ecf8bd98d6
* Add FatFs * enable BUILD_FATFS for all-module build * push vfs into rest of firmware * align maximum filename length * increase timeout for acmd41 during card initialization * switch from DOS to Unix path semantics chdrive() is substituted by chdir() * update to fatfs R.012a incl. patches 1-6 * add callback for rtc provisioning in file * update docs
18 lines
403 B
C
18 lines
403 B
C
#include "../ff.h"
|
|
|
|
#if _USE_LFN != 0
|
|
|
|
#if _CODE_PAGE == 932 /* Japanese Shift_JIS */
|
|
#include "cc932.c"
|
|
#elif _CODE_PAGE == 936 /* Simplified Chinese GBK */
|
|
#include "cc936.c"
|
|
#elif _CODE_PAGE == 949 /* Korean */
|
|
#include "cc949.c"
|
|
#elif _CODE_PAGE == 950 /* Traditional Chinese Big5 */
|
|
#include "cc950.c"
|
|
#else /* Single Byte Character-Set */
|
|
#include "ccsbcs.c"
|
|
#endif
|
|
|
|
#endif
|