Home
last modified time | relevance | path

Searched refs:FF_CODE_PAGE (Results 1 – 4 of 4) sorted by relevance

/hal_espressif-3.6.0/components/fatfs/src/
Dffunicode.c42 #if FF_CODE_PAGE == 932 || FF_CODE_PAGE == 0 /* Japanese */
1898 #if FF_CODE_PAGE == 936 || FF_CODE_PAGE == 0 /* Simplified Chinese */
7356 #if FF_CODE_PAGE == 949 || FF_CODE_PAGE == 0 /* Korean */
11628 #if FF_CODE_PAGE == 950 || FF_CODE_PAGE == 0 /* Traditional Chinese */
15012 #if FF_CODE_PAGE == 437 || FF_CODE_PAGE == 0
15024 #if FF_CODE_PAGE == 720 || FF_CODE_PAGE == 0
15036 #if FF_CODE_PAGE == 737 || FF_CODE_PAGE == 0
15048 #if FF_CODE_PAGE == 771 || FF_CODE_PAGE == 0
15060 #if FF_CODE_PAGE == 775 || FF_CODE_PAGE == 0
15072 #if FF_CODE_PAGE == 850 || FF_CODE_PAGE == 0
[all …]
Dffconf.h73 #define FF_CODE_PAGE CONFIG_FATFS_CODEPAGE macro
Dff.c529 #if FF_CODE_PAGE == 0 /* Run-time code page configuration */
556 #elif FF_CODE_PAGE < 900 /* Static code page configuration (SBCS) */
557 #define CODEPAGE FF_CODE_PAGE
558 static const BYTE ExCvt[] = MKCVTBL(TBL_CT, FF_CODE_PAGE);
561 #define CODEPAGE FF_CODE_PAGE
562 static const BYTE DbcTbl[] = MKCVTBL(TBL_DC, FF_CODE_PAGE);
703 #if FF_CODE_PAGE == 0 /* Variable code page */ in dbc_1st()
708 #elif FF_CODE_PAGE >= 900 /* DBCS fixed code page */ in dbc_1st()
723 #if FF_CODE_PAGE == 0 /* Variable code page */ in dbc_2nd()
729 #elif FF_CODE_PAGE >= 900 /* DBCS fixed code page */ in dbc_2nd()
[all …]
D00history.txt294 Removed ASCII-only configuration, FF_CODE_PAGE = 1. Use FF_CODE_PAGE = 437 instead.
295 Added f_setcp(), run-time code page configuration. (FF_CODE_PAGE = 0)