summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorhathach <[email protected]>2025-12-10 18:29:33 +0700
committerhathach <[email protected]>2025-12-10 18:29:33 +0700
commitaba91bea356375c30383bc9bd220a5c31453cc86 (patch)
tree58a4ed816775ceff60d84d6ce927299fb6557000
parent63dea396deaba159ecf57d34710e8fa506711944 (diff)
disable HWFIFO musb and rusb2, since they are not tested yet
-rw-r--r--src/tusb_option.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/tusb_option.h b/src/tusb_option.h
index fe49f7bf2..be954e01a 100644
--- a/src/tusb_option.h
+++ b/src/tusb_option.h
@@ -356,12 +356,12 @@
//------------ MUSB --------------//
#if defined(TUP_USBIP_MUSB)
- #define CFG_TUD_EDPT_DEDICATED_HWFIFO 1
+ #define CFG_TUD_EDPT_DEDICATED_HWFIFO 0 // need testing to enable
#endif
//------------ RUSB2 --------------//
#if defined(TUP_USBIP_RUSB2)
- #define CFG_TUD_EDPT_DEDICATED_HWFIFO 1
+ #define CFG_TUD_EDPT_DEDICATED_HWFIFO 0 // need testing to enable
#endif
//--------------------------------------------------------------------