Skip to content

Commit

Permalink
Merge pull request #2411 from IngHK/cdch_vendor_class
Browse files Browse the repository at this point in the history
[cdch] replaced vendor specific bInterfaceClass number by define
  • Loading branch information
hathach authored Jan 11, 2024
2 parents f2f40c0 + c619a86 commit 7db9119
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/class/cdc/cdc_host.c
Original file line number Diff line number Diff line change
Expand Up @@ -641,7 +641,7 @@ bool cdch_open(uint8_t rhport, uint8_t daddr, tusb_desc_interface_t const *itf_d
return acm_open(daddr, itf_desc, max_len);
}
#if CFG_TUH_CDC_FTDI || CFG_TUH_CDC_CP210X
else if ( 0xff == itf_desc->bInterfaceClass )
else if ( TUSB_CLASS_VENDOR_SPECIFIC == itf_desc->bInterfaceClass )
{
uint16_t vid, pid;
TU_VERIFY(tuh_vid_pid_get(daddr, &vid, &pid));
Expand Down

0 comments on commit 7db9119

Please sign in to comment.