User Activity

int main(void){FATFS FatFs;FIL fil;FRESULT fr;UINT bw; fr = f_mount(&FatFs, "", 0);if (fr != FR_OK) {return (int)fr;}fr = f_open(&fil, "example.txt", FA_WRITE | FA_CREATE_ALWAYS);if (fr != FR_OK) { f_mount(NULL, "", 0);return (int)fr;}f_close(&fil);}...
Hi,While configuring STM32F446RE on CubeIDE for writing and reading on SD Card using SDIO mode (1 bit mode), when I'm generating code I get this error message :   - Main Config: These peripherals still have some not configured or wrong parameter valu...
Kudos given to