summaryrefslogtreecommitdiff
path: root/usb-cdc-midi/usb-cdc-midi.c
diff options
context:
space:
mode:
Diffstat (limited to 'usb-cdc-midi/usb-cdc-midi.c')
-rw-r--r--usb-cdc-midi/usb-cdc-midi.c38
1 files changed, 19 insertions, 19 deletions
diff --git a/usb-cdc-midi/usb-cdc-midi.c b/usb-cdc-midi/usb-cdc-midi.c
index a7cd501..1424662 100644
--- a/usb-cdc-midi/usb-cdc-midi.c
+++ b/usb-cdc-midi/usb-cdc-midi.c
@@ -2,7 +2,7 @@
* spreadspace avr utils
*
*
- * Copyright (C) 2013-2016 Christian Pointner <equinox@spreadspace.org>
+ * Copyright (C) 2013-2018 Christian Pointner <equinox@spreadspace.org>
*
* This file is part of spreadspace avr utils.
*
@@ -69,24 +69,24 @@ USB_ClassInfo_CDC_Device_t VirtualSerial_CDC_Interface =
USB_ClassInfo_MIDI_Device_t Keyboard_MIDI_Interface =
- {
- .Config =
- {
- .StreamingInterfaceNumber = INTERFACE_ID_AudioStream,
- .DataINEndpoint =
- {
- .Address = MIDI_STREAM_IN_EPADDR,
- .Size = MIDI_STREAM_EPSIZE,
- .Banks = 1,
- },
- .DataOUTEndpoint =
- {
- .Address = MIDI_STREAM_OUT_EPADDR,
- .Size = MIDI_STREAM_EPSIZE,
- .Banks = 1,
- },
- },
- };
+ {
+ .Config =
+ {
+ .StreamingInterfaceNumber = INTERFACE_ID_AudioStream,
+ .DataINEndpoint =
+ {
+ .Address = MIDI_STREAM_IN_EPADDR,
+ .Size = MIDI_STREAM_EPSIZE,
+ .Banks = 1,
+ },
+ .DataOUTEndpoint =
+ {
+ .Address = MIDI_STREAM_OUT_EPADDR,
+ .Size = MIDI_STREAM_EPSIZE,
+ .Banks = 1,
+ },
+ },
+ };
void EVENT_USB_Device_ConfigurationChanged(void)