Skip to main content
Rekha.k
Associate II
July 5, 2019
Question

Implementation of filesystem

  • July 5, 2019
  • 4 replies
  • 2121 views

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.

This topic has been closed for replies.

4 replies

Danish1
Lead III
July 6, 2019

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"

  • Danish
Rekha.k
Rekha.kAuthor
Associate II
July 8, 2019

Hi Danish,

Thanks for the response. i have gone through this link, i was looking for something more..anyways i found some alternatives

Tesla DeLorean
Guru
July 7, 2019

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.

Tips, Buy me a coffee, or three.. PayPal Venmo (See Profile) Up vote any posts that you find helpful, it shows what's working..
Rekha.k
Rekha.kAuthor
Associate II
July 8, 2019

Thanks Clive. i have used routines to make sure write and read happens properly.