FatFs integration (SDIO backend)

This commit is contained in:
rus 2016-10-20 12:29:34 +05:00 committed by UncleRus
parent 2994a566a6
commit 14b2118b06
23 changed files with 38479 additions and 0 deletions

17
extras/fatfs/unicode.c Normal file
View file

@ -0,0 +1,17 @@
#include "ff.h"
#if _USE_LFN != 0
#if _CODE_PAGE == 932 /* Japanese Shift_JIS */
#include "cc932.h"
#elif _CODE_PAGE == 936 /* Simplified Chinese GBK */
#include "cc936.h"
#elif _CODE_PAGE == 949 /* Korean */
#include "cc949.h"
#elif _CODE_PAGE == 950 /* Traditional Chinese Big5 */
#include "cc950.h"
#else /* Single Byte Character-Set */
#include "ccsbcs.h"
#endif
#endif