Searched full:fat (Results 1 – 25 of 56) sorted by relevance
123
/Zephyr-latest/subsys/fs/ |
D | Kconfig.fatfs | 7 bool "ELM FAT file system support" 11 Use the ELM FAT File system implementation. 15 menu "ELM FAT file system settings" 21 Excludes write code from ELM FAT file system driver. 22 Select this when using FAT for read-only access to slightly 25 ELM FAT module. 28 bool "mkfs support for FAT FS" 32 Adds code for creating disks with FAT file system. 34 ELM FAT module. 49 When this option is disabled, disk needs to be FAT formatted [all …]
|
D | fat_fs.c | 107 /* NOTE: FA_APPEND is not translated because FAT FS does not in translate_flags() 216 * The FAT FS write does not support the POSIX append semantics, in fatfs_write() 463 .fmt = FM_ANY | FM_SFD, /* Any suitable FAT */ in fatfs_mount() 464 .n_fat = 1, /* One FAT fs table */ in fatfs_mount() 511 .fmt = FM_ANY | FM_SFD, /* Any suitable FAT */ 512 .n_fat = 1, /* One FAT fs table */
|
/Zephyr-latest/tests/subsys/fs/fat_fs_api/ |
D | testcase.yaml | 8 filesystem.fat.api: 11 filesystem.fat.api.lfn: 15 filesystem.fat.api.mmc: 18 filesystem.fat.api.sdmmc: 21 filesystem.fat.ram.api: 27 filesystem.fat.api.reentrant:
|
/Zephyr-latest/samples/subsys/fs/fs_sample/ |
D | README.rst | 10 This sample app demonstrates use of the file system API and uses the FAT or Ext2 file 19 (FAT or Ext2) See the :ref:`disk_access_api` documentation for Zephyr implementation details. 24 Requirements for setting up FAT FS on SoC flash 27 For the FAT FS to work with internal flash, the device needs to support erase 29 FAT FS partition alone. 33 Requirements for setting up FAT FS on external flash 40 Building and Running FAT samples 65 In case when board with SD card is used FAT microSD card should be present in the 70 In case when mount fails the device may get re-formatted to FAT FS. 77 FAT is default file system for this sample, additional flags must be passed to build
|
/Zephyr-latest/samples/subsys/usb/mass/ |
D | Kconfig | 21 bool "Use RAM disk and FAT file system" 26 bool "Use FLASH disk and FAT file system" 38 bool "Use SDHC and FAT file system"
|
D | README.rst | 43 FAT FS Example 46 If more than 96KiB are available, FAT files system can be used 58 In this example we will build the sample with a FLASH-based disk and FAT 60 to use the external 16 MiBi QSPI flash chip with a 2 MiBy FAT partition. 114 a SD card formatted with FAT filesystem. 200 While a FAT-based file system can be mounted by many systems automatically,
|
/Zephyr-latest/samples/subsys/fs/fs_sample/boards/ |
D | nrf52840dk_nrf52840_ram_disk.overlay | 11 /* Sample, to make things easier, mounts all FAT 16 * required by FAT FS.
|
D | nrf52840dk_nrf52840_ram_disk_region.overlay | 41 /* Sample, to make things easier, mounts all FAT 46 * required by FAT FS.
|
D | nrf54l15dk_nrf54l15_cpuapp.overlay | 7 /* Because FAT FS needs at least 64kiB partition and default
|
D | nrf52840dk_nrf52840.overlay | 7 /* Because FAT FS needs at least 64kiB partition and default
|
/Zephyr-latest/tests/subsys/fs/fat_fs_dual_drive/src/ |
D | test_fat.h | 11 /* Make sure to match the drive name to ELM FAT Lib volume strings */ 17 /* Make sure to match the drive name to ELM FAT Lib volume strings */
|
/Zephyr-latest/tests/subsys/fs/multi-fs/src/ |
D | test_fs_shell.c | 34 test_shell_exec("fs mount fat", -EINVAL); in ZTEST() 43 test_shell_exec("fs mount fat /RAM:", 0); in test_fs_fat_mount()
|
D | main.c | 16 * fat dir operation. in ZTEST() 27 * fat file operation. in ZTEST()
|
D | test_fat_file.c | 13 static const char *test_str = "Hello world FAT";
|
/Zephyr-latest/tests/subsys/fs/fat_fs_dual_drive/ |
D | testcase.yaml | 2 filesystem.fat.dual_drive:
|
/Zephyr-latest/modules/fatfs/ |
D | Kconfig | 7 # Configuration of ELM FAT is found in subsys/fs/Kconfig.fatfs for historic
|
D | zfs_ffsystem.c | 9 * available from FAT FS module source:
|
D | zephyr_fatfs_config.h | 121 * Options provided below have been added to ELM FAT source code to
|
/Zephyr-latest/doc/services/file_system/ |
D | index.rst | 54 - ``samples/subsys/fs/fat_fs`` is an example of FAT file system usage with SDHC media; 57 - ``samples/subsys/usb/mass/`` example of USB Mass Storage device that uses FAT FS driver with RAM
|
/Zephyr-latest/tests/subsys/fs/fat_fs_api/src/ |
D | test_fat_mkfs.c | 49 .fmt = FM_ANY | FM_SFD, /* Any suitable FAT */ 50 .n_fat = 1, /* One FAT fs table */
|
D | common.c | 41 /* In this test the first partition on flash device is used for FAT */ in wipe_partition()
|
/Zephyr-latest/include/zephyr/fs/ |
D | fs_interface.h | 24 /* Enabled FAT driver, without LFN, restricts name length to 12 characters */ 27 #error "CONFIG_FILE_SYSTEM_MAX_FILE_NAME can not be > 12 if FAT is enabled without LFN"
|
/Zephyr-latest/samples/subsys/fs/format/ |
D | README.rst | 15 * FAT file system on RAM disk
|
/Zephyr-latest/boards/intel/common/scripts/ |
D | build_grub.sh | 44 exfat fat multiboot2 multiboot terminal part_msdos part_gpt normal \
|
/Zephyr-latest/scripts/west_commands/runners/ |
D | uf2.py | 52 return ((part.fstype in ['vfat', 'FAT', 'msdos']) and
|
123