mirror of
https://github.com/hathach/tinyusb.git
synced 2025-04-05 13:20:17 +00:00
Merge pull request #1597 from kasjer/kasjer/dfu-coexistence
dfu: Allow DFU coexistence with other interfaces (BTH, RNDIS, future one)
This commit is contained in:
commit
8a28e7cd75
@ -167,6 +167,8 @@ uint16_t dfu_moded_open(uint8_t rhport, tusb_desc_interface_t const * itf_desc,
|
|||||||
uint8_t alt_count = 0;
|
uint8_t alt_count = 0;
|
||||||
|
|
||||||
uint16_t drv_len = 0;
|
uint16_t drv_len = 0;
|
||||||
|
TU_VERIFY(itf_desc->bInterfaceSubClass == TUD_DFU_APP_SUBCLASS && itf_desc->bInterfaceProtocol == DFU_PROTOCOL_DFU, 0);
|
||||||
|
|
||||||
while(itf_desc->bInterfaceSubClass == TUD_DFU_APP_SUBCLASS && itf_desc->bInterfaceProtocol == DFU_PROTOCOL_DFU)
|
while(itf_desc->bInterfaceSubClass == TUD_DFU_APP_SUBCLASS && itf_desc->bInterfaceProtocol == DFU_PROTOCOL_DFU)
|
||||||
{
|
{
|
||||||
TU_ASSERT(max_len > drv_len, 0);
|
TU_ASSERT(max_len > drv_len, 0);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user