summaryrefslogtreecommitdiffstats
path: root/tmk_core/protocol/usb_descriptor.h
diff options
context:
space:
mode:
Diffstat (limited to 'tmk_core/protocol/usb_descriptor.h')
-rw-r--r--tmk_core/protocol/usb_descriptor.h52
1 files changed, 26 insertions, 26 deletions
diff --git a/tmk_core/protocol/usb_descriptor.h b/tmk_core/protocol/usb_descriptor.h
index 1b43cbf3b2..3a7c0bdbac 100644
--- a/tmk_core/protocol/usb_descriptor.h
+++ b/tmk_core/protocol/usb_descriptor.h
@@ -204,12 +204,12 @@ enum usb_endpoints {
#endif
#ifdef RAW_ENABLE
- RAW_IN_EPNUM = NEXT_EPNUM,
- #if STM32_USB_USE_OTG1
- #define RAW_OUT_EPNUM RAW_IN_EPNUM
- #else
+ RAW_IN_EPNUM = NEXT_EPNUM,
+# if STM32_USB_USE_OTG1
+# define RAW_OUT_EPNUM RAW_IN_EPNUM
+# else
RAW_OUT_EPNUM = NEXT_EPNUM,
- #endif
+# endif
#endif
#ifdef SHARED_EP_ENABLE
@@ -220,44 +220,44 @@ enum usb_endpoints {
CONSOLE_IN_EPNUM = NEXT_EPNUM,
# ifdef PROTOCOL_CHIBIOS
- // ChibiOS has enough memory and descriptor to actually enable the endpoint
- // It could use the same endpoint numbers, as that's supported by ChibiOS
- // But the QMK code currently assumes that the endpoint numbers are different
- #if STM32_USB_USE_OTG1
- #define CONSOLE_OUT_EPNUM CONSOLE_IN_EPNUM
- #else
+// ChibiOS has enough memory and descriptor to actually enable the endpoint
+// It could use the same endpoint numbers, as that's supported by ChibiOS
+// But the QMK code currently assumes that the endpoint numbers are different
+# if STM32_USB_USE_OTG1
+# define CONSOLE_OUT_EPNUM CONSOLE_IN_EPNUM
+# else
CONSOLE_OUT_EPNUM = NEXT_EPNUM,
- #endif
+# endif
# else
# define CONSOLE_OUT_EPNUM CONSOLE_IN_EPNUM
# endif
#endif
#ifdef MIDI_ENABLE
- MIDI_STREAM_IN_EPNUM = NEXT_EPNUM,
- #if STM32_USB_USE_OTG1
- #define MIDI_STREAM_OUT_EPNUM MIDI_STREAM_IN_EPNUM
- #else
+ MIDI_STREAM_IN_EPNUM = NEXT_EPNUM,
+# if STM32_USB_USE_OTG1
+# define MIDI_STREAM_OUT_EPNUM MIDI_STREAM_IN_EPNUM
+# else
MIDI_STREAM_OUT_EPNUM = NEXT_EPNUM,
- #endif
+# endif
#endif
#ifdef VIRTSER_ENABLE
CDC_NOTIFICATION_EPNUM = NEXT_EPNUM,
CDC_IN_EPNUM = NEXT_EPNUM,
- #if STM32_USB_USE_OTG1
- #define CDC_OUT_EPNUM CDC_IN_EPNUM
- #else
- CDC_OUT_EPNUM = NEXT_EPNUM,
- #endif
+# if STM32_USB_USE_OTG1
+# define CDC_OUT_EPNUM CDC_IN_EPNUM
+# else
+ CDC_OUT_EPNUM = NEXT_EPNUM,
+# endif
#endif
#ifdef JOYSTICK_ENABLE
- JOYSTICK_IN_EPNUM = NEXT_EPNUM,
- #if STM32_USB_USE_OTG1
+ JOYSTICK_IN_EPNUM = NEXT_EPNUM,
+# if STM32_USB_USE_OTG1
JOYSTICK_OUT_EPNUM = JOYSTICK_IN_EPNUM,
- #else
+# else
JOYSTICK_OUT_EPNUM = NEXT_EPNUM,
- #endif
+# endif
#endif
};