Home
last modified time | relevance | path

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

/hal_espressif-3.6.0/components/fatfs/src/
Dffconf.h133 #define FF_LFN_UNICODE 2 macro
135 #define FF_LFN_UNICODE 1 macro
137 #define FF_LFN_UNICODE 0 macro
Dff.h84 #if FF_USE_LFN && FF_LFN_UNICODE == 1 /* Unicode in UTF-16 encoding */
88 #elif FF_USE_LFN && FF_LFN_UNICODE == 2 /* Unicode in UTF-8 encoding */
92 #elif FF_USE_LFN && FF_LFN_UNICODE == 3 /* Unicode in UTF-32 encoding */
96 #elif FF_USE_LFN && (FF_LFN_UNICODE < 0 || FF_LFN_UNICODE > 3)
97 #error Wrong FF_LFN_UNICODE setting
Dff.c476 #if FF_LFN_UNICODE < 0 || FF_LFN_UNICODE > 3
477 #error Wrong setting of FF_LFN_UNICODE
752 #if FF_LFN_UNICODE == 1 /* UTF-16 input */ in tchar2uni()
762 #elif FF_LFN_UNICODE == 2 /* UTF-8 input */ in tchar2uni()
790 #elif FF_LFN_UNICODE == 3 /* UTF-32 input */ in tchar2uni()
824 #if FF_LFN_UNICODE == 1 /* UTF-16 output */ in put_utf()
839 #elif FF_LFN_UNICODE == 2 /* UTF-8 output */ in put_utf()
872 #elif FF_LFN_UNICODE == 3 /* UTF-32 output */ in put_utf()
2694 #if FF_LFN_UNICODE >= 1 /* Unicode output */
2758 #if FF_USE_LFN && FF_LFN_UNICODE >= 1 /* Unicode input */
[all …]
D00history.txt307 Added support for UTF-8 encoding on the API. (FF_LFN_UNICODE = 2)
318 Added support for UTF-32 encoding on the API. (FF_LFN_UNICODE = 3)