STM32F750 + USB Host + FATFS return FR_DISK_ERR
Hi, I'm trying to run a USB host mass storage on an STM32F750. After building the project in STM32Cube V 1.11.0 I have in "usb_host.c" after the line
" Appli_state = APPLICATION_READY;"
the code
"res = f_mount(&USBHFatFS, USBHPath, 1);"
written, but "res" was always "FR_DISK_ERR". I had tested this way in Nucleo-H723 and seen that it worked. I decided to test with another Stm32Cube version. I had the same problem with version 1.9 but with version 1.8 it works without problems.
Is this a HAL_Library issue and is there a way to solve it?
I defined my project in version 1.11.0 and prefer to continue developing it with this version.
