2018-04-22 08:58 PM
I am using STM32F4 to make a usb msc device using USB-FS and SDIO. EVerything is working great. I am not able to detect the USB transfer complete interrupt. Any clue about it.
I am using the most updated version of cubemx and stm firmware. Please find the Cube generated ioc file attached.
usbd_storage_if.c:
These are the modified functions:
int8_t STORAGE_GetCapacity_FS (uint8_t lun, uint32_t *block_num, uint16_t *block_size){
HAL_SD_CardInfoTypeDef info; HAL_SD_GetCardInfo(&hsd,&info); *block_num =info.LogBlockNbr - 1; *block_size = info.LogBlockSize; return (USBD_OK); /* USER CODE END 3 */}int8_t STORAGE_Read_FS (uint8_t lun, uint8_t *buf, uint32_t blk_addr,uint16_t blk_len){
if(BSP_SD_ReadBlocks((uint32_t *)buf,blk_addr,blk_len,SDMMC_DATATIMEOUT)!=MSD_OK){return (USBD_FAIL);
}while (BSP_SD_GetCardState() !=
SD_TRANSFER_OK
); return (USBD_OK); /* USER CODE END 6 */}int8_t STORAGE_Write_FS (uint8_t lun, uint8_t *buf, uint32_t blk_addr, uint16_t blk_len){
if(BSP_SD_WriteBlocks((uint32_t *)buf,blk_addr,blk_len,SDMMC_DATATIMEOUT)!=MSD_OK){return (USBD_FAIL);
}while (BSP_SD_GetCardState() != SD_TRANSFER_OK){}return (USBD_OK);
/* USER CODE END 7 */
}#stm32f4-+-usb-+sdio2018-08-10 09:37 AM
Sorry, bumping old zombie unanswered threads off my feed