I’m a fresher as a Firmware engineer. I’m currently working on dataloggers.
I’m using STM32U083C-DK board which contains STM32U083MCT6 MCU. I’ve written the code for the basic functionality of the device i.e sleep and wakeup logic using STM32CubeIDE.
Now, I need to communicate with an external flash memory (W25Q32JVSIQ).
Help me with integrating and modifying the necessary files in the FatFS.
So, after going through some searching, I got to know that I need to integrate FatFS with my project (on STM32CubeIDE) first and then do SPI communication with the W25Q32JVSIQ.
So, till now, I’ve done these things:
- I’ve downloaded the FatFs module (ff15.zip) from http://elm-chan.org/fsw/ff/arc/ff15.zip
- And extracted the contents to a location accessible by the STM32CubeIDE project.
- Copied the necessary source files (ff.c, ffsystem.c, ffunicode.c, diskio.c, ff.h, ffconf.h, diskio.h) from the FatFs source folder (ff15/source) into the STM32CubeIDE project directory.
Now, what should I do? I think, I need to edit the ffconf.h file. Can anyone say how to make the necessary changes? Or provide any references?
Bharath Ranga is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.