:orphan: .. title:: CONFIG_FS_FATFS_CODEPAGE .. kconfig:: CONFIG_FS_FATFS_CODEPAGE CONFIG_FS_FATFS_CODEPAGE ######################## *FatFS code page (character set)* Type: ``int`` Help ==== .. code-block:: none Valid code page values: 437 - U.S. 720 - Arabic 737 - Greek 771 - KBL 775 - Baltic 850 - Latin 1 852 - Latin 2 855 - Cyrillic 857 - Turkish 860 - Portuguese 861 - Icelandic 862 - Hebrew 863 - Canadian French 864 - Arabic 865 - Nordic 866 - Russian 869 - Greek 2 932 - Japanese (DBCS) 936 - Simplified Chinese (DBCS) 949 - Korean (DBCS) 950 - Traditional Chinese (DBCS) Direct dependencies =================== \ :kconfig:`FAT_FILESYSTEM_ELM ` && \ :kconfig:`FILE_SYSTEM ` *(Includes any dependencies from ifs and menus.)* Default ======= - 437 Kconfig definition ================== At ``/fs/Kconfig.fatfs:100`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:44`` → ``/Kconfig:25`` → ``/fs/Kconfig:60`` Menu path: (Top) → Sub Systems and OS Services → File Systems → File system support → ELM FAT file system support → ELM FAT file system settings .. code-block:: kconfig config FS_FATFS_CODEPAGE int "FatFS code page (character set)" if FAT_FILESYSTEM_ELM default 437 depends on FAT_FILESYSTEM_ELM && FILE_SYSTEM help Valid code page values: 437 - U.S. 720 - Arabic 737 - Greek 771 - KBL 775 - Baltic 850 - Latin 1 852 - Latin 2 855 - Cyrillic 857 - Turkish 860 - Portuguese 861 - Icelandic 862 - Hebrew 863 - Canadian French 864 - Arabic 865 - Nordic 866 - Russian 869 - Greek 2 932 - Japanese (DBCS) 936 - Simplified Chinese (DBCS) 949 - Korean (DBCS) 950 - Traditional Chinese (DBCS) *(The 'depends on' condition includes propagated dependencies from ifs and menus.)*