From b820d321baceafc23e351a7f9a647d5e1c2e7553 Mon Sep 17 00:00:00 2001 From: Ross Owen Date: Thu, 13 Feb 2014 14:13:29 +0000 Subject: [PATCH] XUD_STATUS_ENABLE enabled on IAP in EP's (and disabled on IAP out EP) --- module_usb_audio/main.xc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/module_usb_audio/main.xc b/module_usb_audio/main.xc index 5ab09d62..6cbebc08 100755 --- a/module_usb_audio/main.xc +++ b/module_usb_audio/main.xc @@ -176,7 +176,7 @@ XUD_EpType epTypeTableOut[EP_CNT_OUT] = { XUD_EPTYPE_CTL | XUD_STATUS_ENABLE, XUD_EPTYPE_BUL, /* MIDI */ #endif #ifdef IAP - XUD_EPTYPE_BUL | XUD_STATUS_ENABLE /* iAP */ + XUD_EPTYPE_BUL /* iAP */ #endif }; @@ -193,8 +193,8 @@ XUD_EpType epTypeTableIn[EP_CNT_IN] = { XUD_EPTYPE_CTL | XUD_STATUS_ENABLE, XUD_EPTYPE_INT, #endif #ifdef IAP - XUD_EPTYPE_BUL, - XUD_EPTYPE_BUL, + XUD_EPTYPE_BUL | XUD_STATUS_ENABLE, + XUD_EPTYPE_BUL | XUD_STATUS_ENABLE, #endif };