/* * Copyright (c) 2006-2022, RT-Thread Development Team * * SPDX-License-Identifier: Apache-2.0 * * Change Logs: * Date Author Notes * 2021-10-20 tfx2001 first version */ #include "tusb.h" #include "usb_descriptor.h" //--------------------------------------------------------------------+ // Device Descriptors //--------------------------------------------------------------------+ static tusb_desc_device_t const desc_device = { .bLength = sizeof(tusb_desc_device_t), .bDescriptorType = TUSB_DESC_DEVICE, .bcdUSB = 0x0200, .bDeviceClass = 0x00, .bDeviceSubClass = 0x00, .bDeviceProtocol = 0x00, .bMaxPacketSize0 = CFG_TUD_ENDPOINT0_SIZE, .idVendor = PKG_TINYUSB_DEVICE_VID, .idProduct = PKG_TINYUSB_DEVICE_PID, .bcdDevice = 0x0100, .iManufacturer = 0x01, .iProduct = 0x02, .iSerialNumber = 0x03, .bNumConfigurations = 0x01 }; // Invoked when received GET DEVICE DESCRIPTOR // Application return pointer to descriptor TU_ATTR_WEAK uint8_t const *tud_descriptor_device_cb(void) { return (uint8_t const *) &desc_device; } //--------------------------------------------------------------------+ // HID Report Descriptor //--------------------------------------------------------------------+ static uint8_t const desc_hid_report[] = { #ifdef PKG_TINYUSB_DEVICE_HID_KEYBOARD TUD_HID_REPORT_DESC_KEYBOARD(HID_REPORT_ID(REPORT_ID_KEYBOARD)), #endif #ifdef PKG_TINYUSB_DEVICE_HID_MOUSE TUD_HID_REPORT_DESC_MOUSE(HID_REPORT_ID(REPORT_ID_MOUSE)), #endif #ifdef PKG_TINYUSB_DEVICE_HID_CONSUMER TUD_HID_REPORT_DESC_CONSUMER(HID_REPORT_ID(REPORT_ID_CONSUMER_CONTROL)), #endif #ifdef PKG_TINYUSB_DEVICE_HID_GAMEPAD TUD_HID_REPORT_DESC_GAMEPAD(HID_REPORT_ID(REPORT_ID_GAMEPAD)) #endif }; // Invoked when received GET HID REPORT DESCRIPTOR // Application return pointer to descriptor // Descriptor contents must exist long enough for transfer to complete TU_ATTR_WEAK uint8_t const *tud_hid_descriptor_report_cb(uint8_t instance) { (void)instance; return desc_hid_report; } //--------------------------------------------------------------------+ // Configuration Descriptor //--------------------------------------------------------------------+ static uint8_t const desc_fs_configuration[] = { TUD_CONFIG_DESCRIPTOR(1, ITF_NUM_TOTAL, 0, CONFIG_TOTAL_LEN, TUSB_DESC_CONFIG_ATT_REMOTE_WAKEUP, PKG_TINYUSB_DEVICE_CURRENT), #if CFG_TUD_CDC TUD_CDC_DESCRIPTOR(ITF_NUM_CDC, 4, EPNUM_CDC_NOTIF, 8, EPNUM_CDC_OUT, EPNUM_CDC_IN, CFG_TUD_CDC_EP_BUFSIZE), #endif #if CFG_TUD_MSC TUD_MSC_DESCRIPTOR(ITF_NUM_MSC, 5, EPNUM_MSC_OUT, EPNUM_MSC_IN, TUD_OPT_HIGH_SPEED ? 512 : 64), #endif #if CFG_TUD_HID TUD_HID_DESCRIPTOR(ITF_NUM_HID, 6, HID_ITF_PROTOCOL_NONE, sizeof(desc_hid_report), EPNUM_HID, CFG_TUD_HID_EP_BUFSIZE, PKG_TINYUSB_DEVICE_HID_INT) #endif }; // Invoked when received GET CONFIGURATION DESCRIPTOR // Application return pointer to descriptor // Descriptor contents must exist long enough for transfer to complete TU_ATTR_WEAK uint8_t const *tud_descriptor_configuration_cb(uint8_t index) { (void) index; // for multiple configurations return desc_fs_configuration; } //--------------------------------------------------------------------+ // String Descriptors //--------------------------------------------------------------------+ // array of pointer to string descriptors static char _serial_number[32] = "123456"; static char *string_desc_arr[] = { (char[]) {0x09, 0x04}, // 0: is supported language is English (0x0409) PKG_TINYUSB_DEVICE_MANUFACTURER, // 1: Manufacturer PKG_TINYUSB_DEVICE_PRODUCT, // 2: Product _serial_number, // 3: Serials, should use chip ID PKG_TINYUSB_DEVICE_CDC_STRING, PKG_TINYUSB_DEVICE_MSC_STRING, PKG_TINYUSB_DEVICE_HID_STRING, }; TU_ATTR_WEAK void tud_descriptor_set_serial(char *serial_number, uint8_t length) { if (length > 31) { length = 31; } memcpy(_serial_number, serial_number, length); _serial_number[length] = '\0'; } static uint16_t desc_str[32]; // Invoked when received GET STRING DESCRIPTOR request // Application return pointer to descriptor, whose contents must exist long enough for transfer to complete TU_ATTR_WEAK uint16_t const *tud_descriptor_string_cb(uint8_t index, uint16_t langid) { (void) langid; uint8_t chr_count; if (index == 0) { memcpy(&desc_str[1], string_desc_arr[0], 2); chr_count = 1; } else { // Note: the 0xEE index string is a Microsoft OS 1.0 Descriptors. // https://docs.microsoft.com/en-us/windows-hardware/drivers/usbcon/microsoft-defined-usb-descriptors if (index >= sizeof(string_desc_arr) / sizeof(string_desc_arr[0])) return NULL; const char *str = string_desc_arr[index]; // Cap at max char chr_count = strlen(str); if (chr_count > 31) chr_count = 31; // Convert ASCII string into UTF-16 for (uint8_t i = 0; i < chr_count; i++) { desc_str[1 + i] = str[i]; } } // first byte is length (including header), second byte is string type desc_str[0] = (TUSB_DESC_STRING << 8) | (2 * chr_count + 2); return desc_str; }