Add optional double-banking support to the Device mode Class Drivers, on a per-endpoi...
[pub/lufa.git] / Demos / Device / ClassDriver / MIDI / MIDI.c
index d50a254..b704827 100644 (file)
@@ -46,11 +46,13 @@ USB_ClassInfo_MIDI_Device_t Keyboard_MIDI_Interface =
                        {\r
                                .StreamingInterfaceNumber = 1,\r
 \r
-                               .DataINEndpointNumber     = MIDI_STREAM_IN_EPNUM,\r
-                               .DataINEndpointSize       = MIDI_STREAM_EPSIZE,\r
+                               .DataINEndpointNumber      = MIDI_STREAM_IN_EPNUM,\r
+                               .DataINEndpointSize        = MIDI_STREAM_EPSIZE,\r
+                               .DataINEndpointDoubleBank  = false,\r
 \r
-                               .DataOUTEndpointNumber    = MIDI_STREAM_OUT_EPNUM,\r
-                               .DataOUTEndpointSize      = MIDI_STREAM_EPSIZE,\r
+                               .DataOUTEndpointNumber     = MIDI_STREAM_OUT_EPNUM,\r
+                               .DataOUTEndpointSize       = MIDI_STREAM_EPSIZE,\r
+                               .DataOUTEndpointDoubleBank = false,\r
                        },\r
        };\r
 \r