2019-03-14 09:35 PM
I have generated code using STM32Cubemx v.5.1 i have selected SDIO and FATFS and i want to use freeRTOS . so as soon as i enable freeRTOS my FATFS stops mounting performing operations. how to get working with both ?? any suggestion ??
2019-03-22 01:33 AM
Hi @CJagt ,
Please set your heap and stack size to 0x1000, the curret used values 0x200 and 0x400 are too low for FreeRTOS and FatFs together
2019-03-22 06:01 AM
Sounds like something that could be automated.... and a recurring point of breakage/failure.
The default Keil ones break so much code that might actually do something, ie USB, media sectors, etc.
2019-04-10 01:07 AM
I am also facing same problem, once I enable freeRTOS my fatfs not mounting even after heap and stack size set to 0x2000. Any solution or any update on this?
2019-04-10 09:28 AM
Hi @sm.18 still I didn't found solution for this problem. I also tried with increased stack and heap size .
2019-04-16 06:13 AM
Finally I found the issue and made it working.
Again generated the code. With above changes FATFS mounting is successful.
And also I am able to read and write operations on SD Card.
2019-10-10 08:45 AM
I am having the same issue. Has anyone solved this yet?