Skip to content

Commit

Permalink
update(port/fsdev): add check for iso, we do not support
Browse files Browse the repository at this point in the history
  • Loading branch information
sakumisu committed Nov 27, 2024
1 parent 015aa77 commit 5850e27
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion port/fsdev/usb_dc_fsdev.c
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,8 @@ int usbd_ep_open(uint8_t busid, const struct usb_endpoint_descriptor *ep)

case USB_ENDPOINT_TYPE_ISOCHRONOUS:
wEpRegVal = USB_EP_ISOCHRONOUS;
break;
USB_LOG_ERR("Do not support iso in fsdev\r\n");
return -1;

default:
break;
Expand Down

0 comments on commit 5850e27

Please sign in to comment.