hathach / tinyusb

An open source cross-platform USB stack for embedded system
https://www.tinyusb.org
MIT License
4.67k stars 998 forks source link

Fix tud_video_n_streaming check #2579

Closed HiFiPhile closed 2 months ago

HiFiPhile commented 2 months ago

Describe the PR I met a racing condition with video examples (strangely I didn't caught it in #2538).

With ISO alloc stm->desc.ep[0] is no longer cleared, tud_video_n_streaming() return true when interface is initializing but usbd_edpt_iso_activate() is not yet called. Resulting usbd_edpt_xfer() called before endpoint is ready.