could you give me any hints what changes are needed to convert IP64Router example from 6LPETH1 (Nucleo-F429ZI + X_NUCLEO-IDS01A4) into an IPv6 router ?
Posted on April 29, 2014 at 13:37i am trying to implement a VCP loopback on a STM32F4Discovery board with the new STM32CubeF4 firmware library. Has anybody successfully implemented this or could give me hints how to start ?regards,Klaus
Posted on August 19, 2014 at 08:57Hi Alex,this is working for me:uint8_t CDC_Transmit_FS(uint8_t* Buf, uint16_t Len){ uint8_t result = USBD_OK; /* USER CODE BEGIN 8 */ USBD_CDC_SetTxBuffer(hUsbDevice_0, Buf, Len); result = USBD_CDC_TransmitPacke...
Posted on July 14, 2014 at 11:18Hello Peter,where can I find the DataIn function you mentioned ?Could you explain why my approach doesn't work:uint8_t CDC_Transmit_FS(uint8_t* Buf, uint16_t Len){ uint8_t result = USBD_OK; /* USER CODE BEGIN 8 */ ...
Posted on July 11, 2014 at 22:26I'm struggling with the same problem. The solution is to send an additional ZLP (zero length packet) but I don't figured it out at the moment how to manage this.Btw.: how did you realize your VCP receive function ?