|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885 |
-
-
- #include "usb_desc.h"
- #include "usb_names.h"
- #include "mk20dx128.h"
- #include "avr_functions.h"
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- #define LSB(n) ((n) & 255)
- #define MSB(n) (((n) >> 8) & 255)
-
-
-
- static uint8_t device_descriptor[] = {
- 18,
- 1,
- 0x00, 0x02,
- #ifdef DEVICE_CLASS
- DEVICE_CLASS,
- #else
- 0,
- #endif
- #ifdef DEVICE_SUBCLASS
- DEVICE_SUBCLASS,
- #else
- 0,
- #endif
- #ifdef DEVICE_PROTOCOL
- DEVICE_PROTOCOL,
- #else
- 0,
- #endif
- EP0_SIZE,
- LSB(VENDOR_ID), MSB(VENDOR_ID),
- LSB(PRODUCT_ID), MSB(PRODUCT_ID),
- 0x00, 0x01,
- 1,
- 2,
- 3,
- 1
- };
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- #ifdef KEYBOARD_INTERFACE
-
- static uint8_t keyboard_report_desc[] = {
- 0x05, 0x01,
- 0x09, 0x06,
- 0xA1, 0x01,
- 0x75, 0x01,
- 0x95, 0x08,
- 0x05, 0x07,
- 0x19, 0xE0,
- 0x29, 0xE7,
- 0x15, 0x00,
- 0x25, 0x01,
- 0x81, 0x02,
- 0x95, 0x08,
- 0x75, 0x01,
- 0x15, 0x00,
- 0x25, 0x01,
- 0x05, 0x0C,
- 0x09, 0xE9,
- 0x09, 0xEA,
- 0x09, 0xE2,
- 0x09, 0xCD,
- 0x09, 0xB5,
- 0x09, 0xB6,
- 0x09, 0xB7,
- 0x09, 0xB8,
- 0x81, 0x02,
- 0x95, 0x05,
- 0x75, 0x01,
- 0x05, 0x08,
- 0x19, 0x01,
- 0x29, 0x05,
- 0x91, 0x02,
- 0x95, 0x01,
- 0x75, 0x03,
- 0x91, 0x03,
- 0x95, 0x06,
- 0x75, 0x08,
- 0x15, 0x00,
- 0x25, 0x7F,
- 0x05, 0x07,
- 0x19, 0x00,
- 0x29, 0x7F,
- 0x81, 0x00,
- 0xc0
- };
- #endif
-
- #ifdef MOUSE_INTERFACE
-
- static uint8_t mouse_report_desc[] = {
- 0x05, 0x01,
- 0x09, 0x02,
- 0xA1, 0x01,
- 0x05, 0x09,
- 0x19, 0x01,
- 0x29, 0x03,
- 0x15, 0x00,
- 0x25, 0x01,
- 0x95, 0x03,
- 0x75, 0x01,
- 0x81, 0x02,
- 0x95, 0x01,
- 0x75, 0x05,
- 0x81, 0x03,
- 0x05, 0x01,
- 0x09, 0x30,
- 0x09, 0x31,
- 0x15, 0x00,
- 0x26, 0xFF, 0x7F,
- 0x75, 0x10,
- 0x95, 0x02,
- 0x81, 0x02,
- 0x09, 0x38,
- 0x15, 0x81,
- 0x25, 0x7F,
- 0x75, 0x08,
- 0x95, 0x01,
- 0x81, 0x06,
- 0xC0
- };
- #endif
-
- #ifdef JOYSTICK_INTERFACE
- static uint8_t joystick_report_desc[] = {
- 0x05, 0x01,
- 0x09, 0x04,
- 0xA1, 0x01,
- 0x15, 0x00,
- 0x25, 0x01,
- 0x75, 0x01,
- 0x95, 0x20,
- 0x05, 0x09,
- 0x19, 0x01,
- 0x29, 0x20,
- 0x81, 0x02,
- 0x15, 0x00,
- 0x25, 0x07,
- 0x35, 0x00,
- 0x46, 0x3B, 0x01,
- 0x75, 0x04,
- 0x95, 0x01,
- 0x65, 0x14,
- 0x05, 0x01,
- 0x09, 0x39,
- 0x81, 0x42,
- 0x05, 0x01,
- 0x09, 0x01,
- 0xA1, 0x00,
- 0x15, 0x00,
- 0x26, 0xFF, 0x03,
- 0x75, 0x0A,
- 0x95, 0x04,
- 0x09, 0x30,
- 0x09, 0x31,
- 0x09, 0x32,
- 0x09, 0x35,
- 0x81, 0x02,
- 0xC0,
- 0x15, 0x00,
- 0x26, 0xFF, 0x03,
- 0x75, 0x0A,
- 0x95, 0x02,
- 0x09, 0x36,
- 0x09, 0x36,
- 0x81, 0x02,
- 0xC0
- };
- #endif
-
- #ifdef SEREMU_INTERFACE
- static uint8_t seremu_report_desc[] = {
- 0x06, 0xC9, 0xFF,
- 0x09, 0x04,
- 0xA1, 0x5C,
- 0x75, 0x08,
- 0x15, 0x00,
- 0x26, 0xFF, 0x00,
- 0x95, SEREMU_TX_SIZE,
- 0x09, 0x75,
- 0x81, 0x02,
- 0x95, SEREMU_RX_SIZE,
- 0x09, 0x76,
- 0x91, 0x02,
- 0x95, 0x04,
- 0x09, 0x76,
- 0xB1, 0x02,
- 0xC0
- };
- #endif
-
- #ifdef RAWHID_INTERFACE
- static uint8_t rawhid_report_desc[] = {
- 0x06, LSB(RAWHID_USAGE_PAGE), MSB(RAWHID_USAGE_PAGE),
- 0x0A, LSB(RAWHID_USAGE), MSB(RAWHID_USAGE),
- 0xA1, 0x01,
- 0x75, 0x08,
- 0x15, 0x00,
- 0x26, 0xFF, 0x00,
- 0x95, RAWHID_TX_SIZE,
- 0x09, 0x01,
- 0x81, 0x02,
- 0x95, RAWHID_RX_SIZE,
- 0x09, 0x02,
- 0x91, 0x02,
- 0xC0
- };
- #endif
-
- #ifdef FLIGHTSIM_INTERFACE
- static uint8_t flightsim_report_desc[] = {
- 0x06, 0x1C, 0xFF,
- 0x0A, 0x39, 0xA7,
- 0xA1, 0x01,
- 0x75, 0x08,
- 0x15, 0x00,
- 0x26, 0xFF, 0x00,
- 0x95, FLIGHTSIM_TX_SIZE,
- 0x09, 0x01,
- 0x81, 0x02,
- 0x95, FLIGHTSIM_RX_SIZE,
- 0x09, 0x02,
- 0x91, 0x02,
- 0xC0
- };
- #endif
-
-
-
-
-
-
-
-
-
- static uint8_t config_descriptor[CONFIG_DESC_SIZE] = {
-
- 9,
- 2,
- LSB(CONFIG_DESC_SIZE),
- MSB(CONFIG_DESC_SIZE),
- NUM_INTERFACE,
- 1,
- 0,
- 0xC0,
- 50,
-
- #ifdef CDC_IAD_DESCRIPTOR
-
- 8,
- 11,
- CDC_STATUS_INTERFACE,
- 2,
- 0x02,
- 0x02,
- 0x01,
- 4,
- #endif
-
- #ifdef CDC_DATA_INTERFACE
-
- 9,
- 4,
- CDC_STATUS_INTERFACE,
- 0,
- 1,
- 0x02,
- 0x02,
- 0x01,
- 0,
-
- 5,
- 0x24,
- 0x00,
- 0x10, 0x01,
-
- 5,
- 0x24,
- 0x01,
- 0x01,
- 1,
-
- 4,
- 0x24,
- 0x02,
- 0x06,
-
- 5,
- 0x24,
- 0x06,
- CDC_STATUS_INTERFACE,
- CDC_DATA_INTERFACE,
-
- 7,
- 5,
- CDC_ACM_ENDPOINT | 0x80,
- 0x03,
- CDC_ACM_SIZE, 0,
- 64,
-
- 9,
- 4,
- CDC_DATA_INTERFACE,
- 0,
- 2,
- 0x0A,
- 0x00,
- 0x00,
- 0,
-
- 7,
- 5,
- CDC_RX_ENDPOINT,
- 0x02,
- CDC_RX_SIZE, 0,
- 0,
-
- 7,
- 5,
- CDC_TX_ENDPOINT | 0x80,
- 0x02,
- CDC_TX_SIZE, 0,
- 0,
- #endif
-
- #ifdef MIDI_INTERFACE
-
- 9,
- 4,
- MIDI_INTERFACE,
- 0,
- 2,
- 0x01,
- 0x03,
- 0x00,
- 0,
-
- 7,
- 0x24,
- 0x01,
- 0x00, 0x01,
- 0x41, 0x00,
-
- 6,
- 0x24,
- 0x02,
- 0x01,
- 1,
- 0,
-
- 6,
- 0x24,
- 0x02,
- 0x02,
- 2,
- 0,
-
- 9,
- 0x24,
- 0x03,
- 0x01,
- 3,
- 1,
- 2,
- 1,
- 0,
-
- 9,
- 0x24,
- 0x03,
- 0x02,
- 4,
- 1,
- 1,
- 1,
- 0,
-
- 9,
- 5,
- MIDI_RX_ENDPOINT,
- 0x02,
- MIDI_RX_SIZE, 0,
- 0,
- 0,
- 0,
-
- 5,
- 0x25,
- 0x01,
- 1,
- 1,
-
- 9,
- 5,
- MIDI_TX_ENDPOINT | 0x80,
- 0x02,
- MIDI_TX_SIZE, 0,
- 0,
- 0,
- 0,
-
- 5,
- 0x25,
- 0x01,
- 1,
- 3,
- #endif
-
- #ifdef KEYBOARD_INTERFACE
-
- 9,
- 4,
- KEYBOARD_INTERFACE,
- 0,
- 1,
- 0x03,
- 0x01,
- 0x01,
- 0,
-
- 9,
- 0x21,
- 0x11, 0x01,
- 0,
- 1,
- 0x22,
- LSB(sizeof(keyboard_report_desc)),
- MSB(sizeof(keyboard_report_desc)),
-
- 7,
- 5,
- KEYBOARD_ENDPOINT | 0x80,
- 0x03,
- KEYBOARD_SIZE, 0,
- KEYBOARD_INTERVAL,
- #endif
-
- #ifdef MOUSE_INTERFACE
-
- 9,
- 4,
- MOUSE_INTERFACE,
- 0,
- 1,
- 0x03,
- 0x00,
- 0x00,
- 0,
-
- 9,
- 0x21,
- 0x11, 0x01,
- 0,
- 1,
- 0x22,
- LSB(sizeof(mouse_report_desc)),
- MSB(sizeof(mouse_report_desc)),
-
- 7,
- 5,
- MOUSE_ENDPOINT | 0x80,
- 0x03,
- MOUSE_SIZE, 0,
- MOUSE_INTERVAL,
- #endif
-
- #ifdef RAWHID_INTERFACE
-
- 9,
- 4,
- RAWHID_INTERFACE,
- 0,
- 2,
- 0x03,
- 0x00,
- 0x00,
- 0,
-
- 9,
- 0x21,
- 0x11, 0x01,
- 0,
- 1,
- 0x22,
- LSB(sizeof(rawhid_report_desc)),
- MSB(sizeof(rawhid_report_desc)),
-
- 7,
- 5,
- RAWHID_TX_ENDPOINT | 0x80,
- 0x03,
- RAWHID_TX_SIZE, 0,
- RAWHID_TX_INTERVAL,
-
- 7,
- 5,
- RAWHID_RX_ENDPOINT,
- 0x03,
- RAWHID_RX_SIZE, 0,
- RAWHID_RX_INTERVAL,
- #endif
-
- #ifdef FLIGHTSIM_INTERFACE
-
- 9,
- 4,
- FLIGHTSIM_INTERFACE,
- 0,
- 2,
- 0x03,
- 0x00,
- 0x00,
- 0,
-
- 9,
- 0x21,
- 0x11, 0x01,
- 0,
- 1,
- 0x22,
- LSB(sizeof(flightsim_report_desc)),
- MSB(sizeof(flightsim_report_desc)),
-
- 7,
- 5,
- FLIGHTSIM_TX_ENDPOINT | 0x80,
- 0x03,
- FLIGHTSIM_TX_SIZE, 0,
- FLIGHTSIM_TX_INTERVAL,
-
- 7,
- 5,
- FLIGHTSIM_RX_ENDPOINT,
- 0x03,
- FLIGHTSIM_RX_SIZE, 0,
- FLIGHTSIM_RX_INTERVAL,
- #endif
-
- #ifdef SEREMU_INTERFACE
-
- 9,
- 4,
- SEREMU_INTERFACE,
- 0,
- 2,
- 0x03,
- 0x00,
- 0x00,
- 0,
-
- 9,
- 0x21,
- 0x11, 0x01,
- 0,
- 1,
- 0x22,
- LSB(sizeof(seremu_report_desc)),
- MSB(sizeof(seremu_report_desc)),
-
- 7,
- 5,
- SEREMU_TX_ENDPOINT | 0x80,
- 0x03,
- SEREMU_TX_SIZE, 0,
- SEREMU_TX_INTERVAL,
-
- 7,
- 5,
- SEREMU_RX_ENDPOINT,
- 0x03,
- SEREMU_RX_SIZE, 0,
- SEREMU_RX_INTERVAL,
- #endif
-
- #ifdef JOYSTICK_INTERFACE
-
- 9,
- 4,
- JOYSTICK_INTERFACE,
- 0,
- 1,
- 0x03,
- 0x00,
- 0x00,
- 0,
-
- 9,
- 0x21,
- 0x11, 0x01,
- 0,
- 1,
- 0x22,
- LSB(sizeof(joystick_report_desc)),
- MSB(sizeof(joystick_report_desc)),
-
- 7,
- 5,
- JOYSTICK_ENDPOINT | 0x80,
- 0x03,
- JOYSTICK_SIZE, 0,
- JOYSTICK_INTERVAL,
- #endif
-
- };
-
-
-
-
-
-
-
-
-
-
-
-
- extern struct usb_string_descriptor_struct usb_string_manufacturer_name
- __attribute__ ((weak, alias("usb_string_manufacturer_name_default")));
- extern struct usb_string_descriptor_struct usb_string_product_name
- __attribute__ ((weak, alias("usb_string_product_name_default")));
- extern struct usb_string_descriptor_struct usb_string_serial_number
- __attribute__ ((weak, alias("usb_string_serial_number_default")));
-
- struct usb_string_descriptor_struct string0 = {
- 4,
- 3,
- {0x0409}
- };
-
- struct usb_string_descriptor_struct usb_string_manufacturer_name_default = {
- 2 + MANUFACTURER_NAME_LEN * 2,
- 3,
- MANUFACTURER_NAME
- };
- struct usb_string_descriptor_struct usb_string_product_name_default = {
- 2 + PRODUCT_NAME_LEN * 2,
- 3,
- PRODUCT_NAME
- };
- struct usb_string_descriptor_struct usb_string_serial_number_default = {
- 12,
- 3,
- {0,0,0,0,0,0,0,0,0,0}
- };
-
- void usb_init_serialnumber(void)
- {
- char buf[11];
- uint32_t i, num;
-
- __disable_irq();
- FTFL_FSTAT = FTFL_FSTAT_RDCOLERR | FTFL_FSTAT_ACCERR | FTFL_FSTAT_FPVIOL;
- FTFL_FCCOB0 = 0x41;
- FTFL_FCCOB1 = 15;
- FTFL_FSTAT = FTFL_FSTAT_CCIF;
- while (!(FTFL_FSTAT & FTFL_FSTAT_CCIF)) ;
- num = *(uint32_t *)&FTFL_FCCOB7;
- __enable_irq();
- ultoa(num, buf, 10);
- for (i=0; i<10; i++) {
- char c = buf[i];
- if (!c) break;
- usb_string_serial_number_default.wString[i] = c;
- }
- usb_string_serial_number_default.bLength = i * 2 + 2;
- }
-
-
-
-
-
-
-
-
- const usb_descriptor_list_t usb_descriptor_list[] = {
-
- {0x0100, 0x0000, device_descriptor, sizeof(device_descriptor)},
- {0x0200, 0x0000, config_descriptor, sizeof(config_descriptor)},
- #ifdef SEREMU_INTERFACE
- {0x2200, SEREMU_INTERFACE, seremu_report_desc, sizeof(seremu_report_desc)},
- {0x2100, SEREMU_INTERFACE, config_descriptor+SEREMU_DESC_OFFSET, 9},
- #endif
- #ifdef KEYBOARD_INTERFACE
- {0x2200, KEYBOARD_INTERFACE, keyboard_report_desc, sizeof(keyboard_report_desc)},
- {0x2100, KEYBOARD_INTERFACE, config_descriptor+KEYBOARD_DESC_OFFSET, 9},
- #endif
- #ifdef MOUSE_INTERFACE
- {0x2200, MOUSE_INTERFACE, mouse_report_desc, sizeof(mouse_report_desc)},
- {0x2100, MOUSE_INTERFACE, config_descriptor+MOUSE_DESC_OFFSET, 9},
- #endif
- #ifdef JOYSTICK_INTERFACE
- {0x2200, JOYSTICK_INTERFACE, joystick_report_desc, sizeof(joystick_report_desc)},
- {0x2100, JOYSTICK_INTERFACE, config_descriptor+JOYSTICK_DESC_OFFSET, 9},
- #endif
- #ifdef RAWHID_INTERFACE
- {0x2200, RAWHID_INTERFACE, rawhid_report_desc, sizeof(rawhid_report_desc)},
- {0x2100, RAWHID_INTERFACE, config_descriptor+RAWHID_DESC_OFFSET, 9},
- #endif
- #ifdef FLIGHTSIM_INTERFACE
- {0x2200, FLIGHTSIM_INTERFACE, flightsim_report_desc, sizeof(flightsim_report_desc)},
- {0x2100, FLIGHTSIM_INTERFACE, config_descriptor+FLIGHTSIM_DESC_OFFSET, 9},
- #endif
- {0x0300, 0x0000, (const uint8_t *)&string0, 0},
- {0x0301, 0x0409, (const uint8_t *)&usb_string_manufacturer_name, 0},
- {0x0302, 0x0409, (const uint8_t *)&usb_string_product_name, 0},
- {0x0303, 0x0409, (const uint8_t *)&usb_string_serial_number, 0},
-
-
-
- {0, 0, NULL, 0}
- };
-
-
-
-
-
-
- #if 0
-
-
-
-
-
- const uint8_t usb_endpoint_config_table[NUM_ENDPOINTS] =
- {
- 0x00, 0x15, 0x19, 0x15, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- };
- #endif
-
-
- const uint8_t usb_endpoint_config_table[NUM_ENDPOINTS] =
- {
- #if (defined(ENDPOINT1_CONFIG) && NUM_ENDPOINTS >= 1)
- ENDPOINT1_CONFIG,
- #elif (NUM_ENDPOINTS >= 1)
- ENDPOINT_UNUSED,
- #endif
- #if (defined(ENDPOINT2_CONFIG) && NUM_ENDPOINTS >= 2)
- ENDPOINT2_CONFIG,
- #elif (NUM_ENDPOINTS >= 2)
- ENDPOINT_UNUSED,
- #endif
- #if (defined(ENDPOINT3_CONFIG) && NUM_ENDPOINTS >= 3)
- ENDPOINT3_CONFIG,
- #elif (NUM_ENDPOINTS >= 3)
- ENDPOINT_UNUSED,
- #endif
- #if (defined(ENDPOINT4_CONFIG) && NUM_ENDPOINTS >= 4)
- ENDPOINT4_CONFIG,
- #elif (NUM_ENDPOINTS >= 4)
- ENDPOINT_UNUSED,
- #endif
- #if (defined(ENDPOINT5_CONFIG) && NUM_ENDPOINTS >= 5)
- ENDPOINT5_CONFIG,
- #elif (NUM_ENDPOINTS >= 5)
- ENDPOINT_UNUSED,
- #endif
- #if (defined(ENDPOINT6_CONFIG) && NUM_ENDPOINTS >= 6)
- ENDPOINT6_CONFIG,
- #elif (NUM_ENDPOINTS >= 6)
- ENDPOINT_UNUSED,
- #endif
- #if (defined(ENDPOINT7_CONFIG) && NUM_ENDPOINTS >= 7)
- ENDPOINT7_CONFIG,
- #elif (NUM_ENDPOINTS >= 7)
- ENDPOINT_UNUSED,
- #endif
- #if (defined(ENDPOINT8_CONFIG) && NUM_ENDPOINTS >= 8)
- ENDPOINT8_CONFIG,
- #elif (NUM_ENDPOINTS >= 8)
- ENDPOINT_UNUSED,
- #endif
- #if (defined(ENDPOINT9_CONFIG) && NUM_ENDPOINTS >= 9)
- ENDPOINT9_CONFIG,
- #elif (NUM_ENDPOINTS >= 9)
- ENDPOINT_UNUSED,
- #endif
- #if (defined(ENDPOINT10_CONFIG) && NUM_ENDPOINTS >= 10)
- ENDPOINT10_CONFIG,
- #elif (NUM_ENDPOINTS >= 10)
- ENDPOINT_UNUSED,
- #endif
- #if (defined(ENDPOINT11_CONFIG) && NUM_ENDPOINTS >= 11)
- ENDPOINT11_CONFIG,
- #elif (NUM_ENDPOINTS >= 11)
- ENDPOINT_UNUSED,
- #endif
- #if (defined(ENDPOINT12_CONFIG) && NUM_ENDPOINTS >= 12)
- ENDPOINT12_CONFIG,
- #elif (NUM_ENDPOINTS >= 12)
- ENDPOINT_UNUSED,
- #endif
- #if (defined(ENDPOINT13_CONFIG) && NUM_ENDPOINTS >= 13)
- ENDPOINT13_CONFIG,
- #elif (NUM_ENDPOINTS >= 13)
- ENDPOINT_UNUSED,
- #endif
- #if (defined(ENDPOINT14_CONFIG) && NUM_ENDPOINTS >= 14)
- ENDPOINT14_CONFIG,
- #elif (NUM_ENDPOINTS >= 14)
- ENDPOINT_UNUSED,
- #endif
- #if (defined(ENDPOINT15_CONFIG) && NUM_ENDPOINTS >= 15)
- ENDPOINT15_CONFIG,
- #elif (NUM_ENDPOINTS >= 15)
- ENDPOINT_UNUSED,
- #endif
- };
-
-
-
-
|