stm32f207 usb only multiple of 64 bytes can be send
Posted on April 10, 2013 at 10:04change by stm32 usb device VCP example: my send function: uint16_t VCP_DataTx (uint8_t* Buf, uint32_t Len) { uint8_t i; for (i=0;i<64;i++) //only multiple of 64 bytes can be send { APP_Rx_Buffer[APP_Rx_ptr_in...