From cbe78f355c6733f969dc0fa07be951f6110c48ee Mon Sep 17 00:00:00 2001 From: Sam Chesney Date: Tue, 29 Jul 2014 15:14:24 +0100 Subject: [PATCH] iAP EA Native Transport Eps added to epTypeTables --- module_usb_audio/main.xc | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/module_usb_audio/main.xc b/module_usb_audio/main.xc index 5559f4ad..bac09ed6 100755 --- a/module_usb_audio/main.xc +++ b/module_usb_audio/main.xc @@ -180,7 +180,10 @@ XUD_EpType epTypeTableOut[ENDPOINT_COUNT_OUT] = { XUD_EPTYPE_CTL | XUD_STATUS_EN XUD_EPTYPE_BUL, /* MIDI */ #endif #ifdef IAP - XUD_EPTYPE_BUL /* iAP */ + XUD_EPTYPE_BUL, /* iAP */ +#ifdef IAP_EA_NATIVE_TRANS + XUD_EPTYPE_BUL, /* EA Native Transport */ +#endif #endif }; @@ -201,6 +204,9 @@ XUD_EpType epTypeTableIn[ENDPOINT_COUNT_IN] = { XUD_EPTYPE_CTL | XUD_STATUS_ENAB #ifdef IAP_INT_EP XUD_EPTYPE_BUL | XUD_STATUS_ENABLE, #endif +#ifdef IAP_EA_NATIVE_TRANS + XUD_EPTYPE_BUL | XUD_STATUS_ENABLE, +#endif #endif };