Question
[STM32F439] Could not receive USB CDC Interrupt IN transfer data
As title
I generate USB CDC with STM32CubeMX,
and try to send data by using interrupt transfer end point 0x81
I try to usb Bushound to receive data, but it could not revive any data from CDC interrupt IN.
Is there any things that i should be modify?
Experiment In main while send 1 byte,
(1) OK
(2) FAIL
1 [Bulk]
USBD_LL_Transmit(&hUsbDeviceFS,CDC_IN_EP ,&data, 1)
2 [Interrupt]
USBD_LL_Transmit(&hUsbDeviceFS,CDC_CMD_EP,&data, 1)