forked from mirrors/qmk_firmware
Tabs to spaces in usb_descriptor.h
This commit is contained in:
parent
e8082b5f9e
commit
6982e63a4a
1 changed files with 16 additions and 16 deletions
|
@ -117,17 +117,17 @@ typedef struct
|
||||||
#ifdef VIRTSER_ENABLE
|
#ifdef VIRTSER_ENABLE
|
||||||
USB_Descriptor_Interface_Association_t CDC_Interface_Association;
|
USB_Descriptor_Interface_Association_t CDC_Interface_Association;
|
||||||
|
|
||||||
// CDC Control Interface
|
// CDC Control Interface
|
||||||
USB_Descriptor_Interface_t CDC_CCI_Interface;
|
USB_Descriptor_Interface_t CDC_CCI_Interface;
|
||||||
USB_CDC_Descriptor_FunctionalHeader_t CDC_Functional_Header;
|
USB_CDC_Descriptor_FunctionalHeader_t CDC_Functional_Header;
|
||||||
USB_CDC_Descriptor_FunctionalACM_t CDC_Functional_ACM;
|
USB_CDC_Descriptor_FunctionalACM_t CDC_Functional_ACM;
|
||||||
USB_CDC_Descriptor_FunctionalUnion_t CDC_Functional_Union;
|
USB_CDC_Descriptor_FunctionalUnion_t CDC_Functional_Union;
|
||||||
USB_Descriptor_Endpoint_t CDC_NotificationEndpoint;
|
USB_Descriptor_Endpoint_t CDC_NotificationEndpoint;
|
||||||
|
|
||||||
// CDC Data Interface
|
// CDC Data Interface
|
||||||
USB_Descriptor_Interface_t CDC_DCI_Interface;
|
USB_Descriptor_Interface_t CDC_DCI_Interface;
|
||||||
USB_Descriptor_Endpoint_t CDC_DataOutEndpoint;
|
USB_Descriptor_Endpoint_t CDC_DataOutEndpoint;
|
||||||
USB_Descriptor_Endpoint_t CDC_DataInEndpoint;
|
USB_Descriptor_Endpoint_t CDC_DataInEndpoint;
|
||||||
#endif
|
#endif
|
||||||
} USB_Descriptor_Configuration_t;
|
} USB_Descriptor_Configuration_t;
|
||||||
|
|
||||||
|
@ -139,9 +139,9 @@ typedef struct
|
||||||
// interface number, to support Linux/OSX platforms and chrome.hid
|
// interface number, to support Linux/OSX platforms and chrome.hid
|
||||||
// If Raw HID is enabled, let it be always 1.
|
// If Raw HID is enabled, let it be always 1.
|
||||||
#ifdef RAW_ENABLE
|
#ifdef RAW_ENABLE
|
||||||
# define RAW_INTERFACE (KEYBOARD_INTERFACE + 1)
|
# define RAW_INTERFACE (KEYBOARD_INTERFACE + 1)
|
||||||
#else
|
#else
|
||||||
# define RAW_INTERFACE KEYBOARD_INTERFACE
|
# define RAW_INTERFACE KEYBOARD_INTERFACE
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifdef MOUSE_ENABLE
|
#ifdef MOUSE_ENABLE
|
||||||
|
@ -240,13 +240,13 @@ typedef struct
|
||||||
|
|
||||||
#ifdef VIRTSER_ENABLE
|
#ifdef VIRTSER_ENABLE
|
||||||
# define CDC_NOTIFICATION_EPNUM (MIDI_STREAM_OUT_EPNUM + 1)
|
# define CDC_NOTIFICATION_EPNUM (MIDI_STREAM_OUT_EPNUM + 1)
|
||||||
# define CDC_IN_EPNUM (MIDI_STREAM_OUT_EPNUM + 2)
|
# define CDC_IN_EPNUM (MIDI_STREAM_OUT_EPNUM + 2)
|
||||||
# define CDC_OUT_EPNUM (MIDI_STREAM_OUT_EPNUM + 3)
|
# define CDC_OUT_EPNUM (MIDI_STREAM_OUT_EPNUM + 3)
|
||||||
# define CDC_NOTIFICATION_EPADDR (ENDPOINT_DIR_IN | CDC_NOTIFICATION_EPNUM)
|
# define CDC_NOTIFICATION_EPADDR (ENDPOINT_DIR_IN | CDC_NOTIFICATION_EPNUM)
|
||||||
# define CDC_IN_EPADDR (ENDPOINT_DIR_IN | CDC_IN_EPNUM)
|
# define CDC_IN_EPADDR (ENDPOINT_DIR_IN | CDC_IN_EPNUM)
|
||||||
# define CDC_OUT_EPADDR (ENDPOINT_DIR_OUT | CDC_OUT_EPNUM)
|
# define CDC_OUT_EPADDR (ENDPOINT_DIR_OUT | CDC_OUT_EPNUM)
|
||||||
#else
|
#else
|
||||||
# define CDC_OUT_EPNUM MIDI_STREAM_OUT_EPNUM
|
# define CDC_OUT_EPNUM MIDI_STREAM_OUT_EPNUM
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if (defined(PROTOCOL_LUFA) && CDC_OUT_EPNUM > (ENDPOINT_TOTAL_ENDPOINTS - 1)) || \
|
#if (defined(PROTOCOL_LUFA) && CDC_OUT_EPNUM > (ENDPOINT_TOTAL_ENDPOINTS - 1)) || \
|
||||||
|
@ -257,7 +257,7 @@ typedef struct
|
||||||
#define KEYBOARD_EPSIZE 8
|
#define KEYBOARD_EPSIZE 8
|
||||||
#define MOUSE_EPSIZE 8
|
#define MOUSE_EPSIZE 8
|
||||||
#define EXTRAKEY_EPSIZE 8
|
#define EXTRAKEY_EPSIZE 8
|
||||||
#define RAW_EPSIZE 32
|
#define RAW_EPSIZE 32
|
||||||
#define CONSOLE_EPSIZE 32
|
#define CONSOLE_EPSIZE 32
|
||||||
#define NKRO_EPSIZE 32
|
#define NKRO_EPSIZE 32
|
||||||
#define MIDI_STREAM_EPSIZE 64
|
#define MIDI_STREAM_EPSIZE 64
|
||||||
|
|
Loading…
Reference in a new issue