summaryrefslogtreecommitdiff
path: root/src/common
diff options
context:
space:
mode:
authorhathach <[email protected]>2024-08-19 11:59:41 +0700
committerhathach <[email protected]>2024-08-19 12:04:24 +0700
commit8fdd8d9a7b83bfb79ac9a02142592d7ee4948b83 (patch)
tree0a9b8bba655a23773cfe58e104b33ab02a0514b6 /src/common
parente345380723051ac3342a724660e877d7b2dad2fb (diff)
implement dcd_edpt_iso_alloc/dcd_edpt_iso_activate for musb. video_capture example with iso kind of work but not smoothly. audio example does not seems to work as expected
Diffstat (limited to 'src/common')
-rw-r--r--src/common/tusb_mcu.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/common/tusb_mcu.h b/src/common/tusb_mcu.h
index b7cbd83df..e86f55c1d 100644
--- a/src/common/tusb_mcu.h
+++ b/src/common/tusb_mcu.h
@@ -518,7 +518,8 @@
#define TU_ATTR_FAST_FUNC
#endif
-#if defined(TUP_USBIP_DWC2) || defined(TUP_USBIP_FSDEV)
+// USBIP that support ISO alloc & activate API
+#if defined(TUP_USBIP_DWC2) || defined(TUP_USBIP_FSDEV) || defined(TUP_USBIP_MUSB)
#define TUP_DCD_EDPT_ISO_ALLOC
#endif