2015-08-14 01:24 PM
2015-08-14 01:46 PM
Hi,
I had the same issue. You have to manually call the receive function again to receive more data:
static int8_t CDC_Receive_HS (uint8_t* Buf, uint32_t *Len){/* USER CODE BEGIN 11 */USBD_CDC_ReceivePacket(hUsbDevice_1);return (USBD_OK);/* USER CODE END 11 */}
Regards,
Robert
2015-08-14 02:00 PM
Hi Rovert,
Thank you very much. It worked.Regards,Provat