Home
last modified time | relevance | path

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

/littlefs-3.7.0-3.6.0/tests/
Dtest_compat.toml5 # - lfs => the new/current version of littlefs
6 # - lfsp => the previous version of littlefs
12 # But to get value from these tests, it's expected that the previous version
61 # test we can mount in a new version
68 // create the previous version
83 // we should be able to read the version using lfs_fs_stat
91 # test we can read dirs in a new version
99 // create the previous version
115 // mount the new version
119 // we should be able to read the version using lfs_fs_stat
[all …]
Dtest_superblocks.toml341 .version = LFS_DISK_VERSION,
/littlefs-3.7.0-3.6.0/scripts/
Dreadtree.py103 version = ('?', '?')
105 version = tuple(reversed(
107 print("%-47s%s" % ("littlefs v%s.%s" % version,
/littlefs-3.7.0-3.6.0/
DSPEC.md4 version lfs2.1. This document covers the technical details of how the littlefs
395 string "littlefs", while the inline-struct tag contains version and
412 ^ ^ ^ ^ ^- version ^- block size ^- block count
427 2. **Version (32-bits)** - The version of littlefs at format time. The version
429 version, and the lower 16-bits containing the minor version.
431 This specification describes version 2.0 (`0x00020000`).
Dlfs.c478 superblock->version = lfs_fromle32(superblock->version); in lfs_superblock_fromle32()
488 superblock->version = lfs_tole32(superblock->version); in lfs_superblock_tole32()
4289 .version = lfs_fs_disk_version(lfs),
4385 uint16_t major_version = (0xffff & (superblock.version >> 16));
4386 uint16_t minor_version = (0xffff & (superblock.version >> 0));
4527 fsinfo->disk_version = superblock.version;
4797 .version = lfs_fs_disk_version(lfs),
5169 uint32_t version; member
5234 d->version = lfs_fromle32(d->version);
5491 uint16_t major_version = (0xffff & (superblock.d.version >> 16));
[all …]
Dlfs.h402 uint32_t version; member
DDESIGN.md1842 - In a previous version of littlefs we tried to solve this problem by going