eclipse-threadx / usbx

Eclipse ThreadX - USBX is a high-performance USB host, device, and on-the-go (OTG) embedded stack, that is fully integrated with Eclipse ThreadX RTOS
https://github.com/eclipse-threadx/rtos-docs/blob/main/rtos-docs/usbx/index.md
MIT License
154 stars 89 forks source link

USB cannot send data after sending some data #42

Closed arilink-tech closed 2 years ago

arilink-tech commented 2 years ago

I ported threadX and USBX on stm32f105rbt6. When I try to send some data through IN breakpoint, I can no longer send data but can accept data. The error of sending data is ux_device_class_hid_event_array_tail. Why is this?

xiaocq2001 commented 2 years ago

It seems data is actually not sent, so the event queue is full. I suggest to check your hardware settings especially FIFO of your interrupt IN endpoint.

arilink-tech commented 2 years ago

Problem solved It's my own problem Thank you very much for your support and help