forked from PAWPAW-Mirror/lib_xua
Fixed build issue due to bad define name (EP vs ENDPOINT)
This commit is contained in:
@@ -19,7 +19,7 @@
|
|||||||
*/
|
*/
|
||||||
void buffer(chanend c_aud_out,
|
void buffer(chanend c_aud_out,
|
||||||
chanend c_aud_in,
|
chanend c_aud_in,
|
||||||
#if (NUM_USB_CHAN_IN == 0) || defined (UAC_FORCE_FEEDBACK_ENDPOINT)
|
#if (NUM_USB_CHAN_IN == 0) || defined (UAC_FORCE_FEEDBACK_EP)
|
||||||
chanend c_aud_fb,
|
chanend c_aud_fb,
|
||||||
#endif
|
#endif
|
||||||
#ifdef MIDI
|
#ifdef MIDI
|
||||||
|
|||||||
@@ -95,7 +95,7 @@ unsigned char fb_clocks[16];
|
|||||||
* @return void
|
* @return void
|
||||||
*/
|
*/
|
||||||
void buffer(register chanend c_aud_out, register chanend c_aud_in,
|
void buffer(register chanend c_aud_out, register chanend c_aud_in,
|
||||||
#if (NUM_USB_CHAN_IN == 0) || defined (UAC_FORCE_FEEDBACK_ENDPOINT)
|
#if (NUM_USB_CHAN_IN == 0) || defined (UAC_FORCE_FEEDBACK_EP)
|
||||||
chanend c_aud_fb,
|
chanend c_aud_fb,
|
||||||
#endif
|
#endif
|
||||||
#ifdef MIDI
|
#ifdef MIDI
|
||||||
@@ -134,7 +134,7 @@ void buffer(register chanend c_aud_out, register chanend c_aud_in,
|
|||||||
{
|
{
|
||||||
XUD_ep ep_aud_out = XUD_InitEp(c_aud_out);
|
XUD_ep ep_aud_out = XUD_InitEp(c_aud_out);
|
||||||
XUD_ep ep_aud_in = XUD_InitEp(c_aud_in);
|
XUD_ep ep_aud_in = XUD_InitEp(c_aud_in);
|
||||||
#if (NUM_USB_CHAN_IN == 0) || defined (UAC_FORCE_FEEDBACK_ENDPOINT)
|
#if (NUM_USB_CHAN_IN == 0) || defined (UAC_FORCE_FEEDBACK_EP)
|
||||||
XUD_ep ep_aud_fb = XUD_InitEp(c_aud_fb);
|
XUD_ep ep_aud_fb = XUD_InitEp(c_aud_fb);
|
||||||
#endif
|
#endif
|
||||||
#ifdef MIDI
|
#ifdef MIDI
|
||||||
|
|||||||
Reference in New Issue
Block a user