Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions subsys/fs/Kconfig.fatfs
Original file line number Diff line number Diff line change
Expand Up @@ -129,6 +129,19 @@ config FS_FATFS_MAX_SS
range 512 4096
default 512

config FS_FATFS_WINDOW_ALIGNMENT
int "Memory alignment for the member \"win\" in FATFS"
default 1
help
Specifies alignment, in bytes of FAT FS window buffer that is
used for device's read/write operations. MMC controllers may
require read/write buffer to start at memory address with
specific alignment, for example 16 or 512 bytes, the value
provided here is used as such alignment. Note that the window
buffer is internal element of FATFS structure, which means
that, in worst scenario, value provided here may cause FATFS
structure to have size of twice the value

endmenu

endif # FAT_FILESYSTEM_ELM
2 changes: 1 addition & 1 deletion west.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ manifest:
groups:
- tools
- name: fatfs
revision: 09a9d913c61dccbb8ff92d8943b452c614ac5292
revision: 9237454a30bcf6e14a89db174e8dbeb8f31831d2
path: modules/fs/fatfs
groups:
- fs
Expand Down