FatFs integration (SDIO backend) (#242)

This commit is contained in:
Ruslan V. Uss 2016-10-25 01:30:51 +06:00 committed by sheinz
parent 2994a566a6
commit f1d44f5cbe
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