Lines Matching +full:disk +full:- +full:name
4 * SPDX-License-Identifier: Apache-2.0
21 * @brief Get the major part of the littlefs disk version
23 * @param disk_version The disk version of littlefs partition
24 * @return The major part of the littlefs disk version.
29 * @brief Get the minor part of the littlefs disk version
31 * @param disk_version The disk version of littlefs partition
32 * @return The minor part of the littlefs disk version.
74 * @note If you use a non-default configuration for cache size, you
76 * the size constraints on per-file cache allocations.
78 * @param name the name for the structure. The defined object has
86 #define FS_LITTLEFS_DECLARE_CUSTOM_CONFIG(name, alignment, read_sz, prog_sz, cache_sz, \ argument
88 static uint8_t __aligned(alignment) name ## _read_buffer[cache_sz]; \
89 static uint8_t __aligned(alignment) name ## _prog_buffer[cache_sz]; \
90 static uint32_t name ## _lookahead_buffer[(lookahead_sz) / sizeof(uint32_t)]; \
91 static struct fs_littlefs name = { \
97 .read_buffer = name ## _read_buffer, \
98 .prog_buffer = name ## _prog_buffer, \
99 .lookahead_buffer = name ## _lookahead_buffer, \
109 * @param name the name for the structure. The defined object has
112 #define FS_LITTLEFS_DECLARE_DEFAULT_CONFIG(name) \ argument
113 FS_LITTLEFS_DECLARE_CUSTOM_CONFIG(name, \