Home
last modified time | relevance | path

Searched refs:version (Results 1 – 5 of 5) sorted by relevance

/littlefs-3.5.0-3.4.0/scripts/
Dreadtree.py103 version = ('?', '?')
105 version = tuple(reversed(
107 print("%-47s%s" % ("littlefs v%s.%s" % version,
/littlefs-3.5.0-3.4.0/
DSPEC.md354 string "littlefs", while the inline-struct tag contains version and
371 ^ ^ ^ ^ ^- version ^- block size ^- block count
386 2. **Version (32-bits)** - The version of littlefs at format time. The version
388 version, and the lower 16-bits containing the minor version.
390 This specification describes version 2.0 (`0x00020000`).
Dlfs.c434 superblock->version = lfs_fromle32(superblock->version); in lfs_superblock_fromle32()
444 superblock->version = lfs_tole32(superblock->version); in lfs_superblock_tole32()
4064 .version = LFS_DISK_VERSION,
4151 uint16_t major_version = (0xffff & (superblock.version >> 16));
4152 uint16_t minor_version = (0xffff & (superblock.version >> 0));
4724 uint32_t version; member
4789 d->version = lfs_fromle32(d->version);
5046 uint16_t major_version = (0xffff & (superblock.d.version >> 16));
5047 uint16_t minor_version = (0xffff & (superblock.d.version >> 0));
5254 .version = LFS_DISK_VERSION,
Dlfs.h373 uint32_t version; member
DDESIGN.md1842 - In a previous version of littlefs we tried to solve this problem by going