From aba91bea356375c30383bc9bd220a5c31453cc86 Mon Sep 17 00:00:00 2001 From: hathach Date: Wed, 10 Dec 2025 18:29:33 +0700 Subject: [PATCH] disable HWFIFO musb and rusb2, since they are not tested yet --- src/tusb_option.h | 4 ++-- 1 file 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 //--------------------------------------------------------------------