USB_ResetPort function is called in USBH_Process in HOST_IDLE state after USBH_Delay(200U); this results in 300 ms delay usb application.Is there any way to reduce this time in stm32 USB applications.This function is after a USB connection. Is there ...
why you have enabled crc for mp3 player in your examples ?What is its purpose?uint32_t Mp3Process_DecoderInit(uint8_t* pHeader,
fnReadCallback_TypeDef* pReadCallback,
fnSetPositionCallba...
I have connected a turned off android phone to the stm32 USB port.Device gets enumerated as a msc device.Enumeration outputUSB Device ConnectedUSB Device Reset CompletedPID: 2eb7hVID: 22b8hAddress (#1) assigned.Manufacturer : motorolaProduct : moto g...
Hello USBH_MSC_Read function uses a while loop and USBH_MSC_RdWrProcess to USB mass storage. while (USBH_MSC_RdWrProcess(phost, lun) == USBH_BUSY)
{
if (((phost->Timer - timeout) > (10000U * length)) || (phost->device.is_connected == 0U) )
...
Hello I am having similar problem in MSC_Read I have usb host applicationI use different usb sticks Most of them will get stuck in USBH_MSC_Read for atleat 300 milliseconds but some may get stuck in this loop for more than 3 or 5 seconds which is ALO...