Question
I'm facing problem in integrating sd card with STM32F767ZI board over SPI1.
Code generated with STM32cube mx software
Libraries included - fatfs.h
spi.h
Software - Truestudio
Error - f_mount works but in f_open it gets stuck.
No source available for "USER_initialize() at 0x8002800"
code line : if(f_mount(&fs, "", 0) != FR_OK)
_Error_Handler(__FILE__, __LINE__);
/* Open file to write */
if(f_open(&fil, "first.txt", FA_OPEN_ALWAYS | FA_READ | FA_WRITE) != FR_OK)
_Error_Handler(__FILE__, __LINE__);