You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
littlefs2 v2.6 introduced a new on-disk format (lfs2.1).
We use the multiversion feature to keep the old on-disk format (lfs2.0) to not break compatibility with older versions of this crate.
Replaced the version function with the BACKEND_VERSION and DISK_VERSION constants.
Changed the Version struct to be a wrapper for a littlefs version number.
Removed the trait and result arguments from the const_ram_storage! and ram_storage! macros and replaced them with $crate::driver::Storage and $crate::io::Result.