2019-07-04 09:39 PM
Hi i am trying to implement Littlefs filesystem on STM32L151 MCU which is interfaced with external Flash memory using SPI.
is it already implemented on any one of the STM32 board? if yes-i need to know what are the key features to be carried out to implement filesystem successfully.
2019-07-06 07:22 AM
A quick google came up with https://github.com/ARMmbed/littlefs/issues/90 . Is that sufficient to answer your question?
"porting littlefs on STM32 with W25Q16JV Flash"
2019-07-06 08:24 PM
Files systems have a primary reliance on you being able to read back the same data block(s) that were previously written to the device.
If you are still using the MX25R6435F, you will want to use routines that you have fully validated.
2019-07-07 11:08 PM
Hi Danish,
Thanks for the response. i have gone through this link, i was looking for something more..anyways i found some alternatives
2019-07-07 11:09 PM
Thanks Clive. i have used routines to make sure write and read happens properly.