Closed baldhead69 closed 9 months ago
Hi @baldhead69, thanks for raising an issue.
This actually looks like it's in a higher-level wrapper than the codebase here. Are you using a framework such as Mbed/Zephyr/Arduino?
Hi @baldhead69, thanks for raising an issue.
This actually looks like it's in a higher-level wrapper than the codebase here. Are you using a framework such as Mbed/Zephyr/Arduino?
Hi @geky ,
I am using microchip mplab code configurator( MCC ) to generate the code for a pic32mz chip.
https://github.com/MicrochipTech/littlefs
/// Version info ///
// Software library version
// Major (top-nibble), incremented on backwards incompatible changes
// Minor (bottom-nibble), incremented on feature additions
#define LFS_VERSION 0x00020005
#define LFS_VERSION_MAJOR (0xffff & (LFS_VERSION >> 16))
#define LFS_VERSION_MINOR (0xffff & (LFS_VERSION >> 0))
// Version of On-disk data structures
// Major (top-nibble), incremented on backwards incompatible changes
// Minor (bottom-nibble), incremented on feature additions
#define LFS_DISK_VERSION 0x00020000
#define LFS_DISK_VERSION_MAJOR (0xffff & (LFS_DISK_VERSION >> 16))
#define LFS_DISK_VERSION_MINOR (0xffff & (LFS_DISK_VERSION >> 0))
Hi,
Just for information, if littlefs project team want to fix the code.