diff options
| author | hathach <[email protected]> | 2019-07-12 14:53:11 +0700 |
|---|---|---|
| committer | hathach <[email protected]> | 2019-07-12 14:53:11 +0700 |
| commit | 164b26ee6bb0a24924e9736178808b676288845e (patch) | |
| tree | e5edbb031350f6283c546e7ce76f9e143a3c9278 /src/device/usbd.c | |
| parent | 3b6013e78f66551e4516db348f3d0f547731c782 (diff) | |
change TUD_HID_INOUT_DESCRIPTOR epout & epin order
clean up, adding template for BOS & BOS platform descriptor
Diffstat (limited to 'src/device/usbd.c')
| -rw-r--r-- | src/device/usbd.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/device/usbd.c b/src/device/usbd.c index fb6d53ba1..6a70afede 100644 --- a/src/device/usbd.c +++ b/src/device/usbd.c @@ -593,8 +593,8 @@ static bool process_get_descriptor(uint8_t rhport, tusb_control_request_t const // String Descriptor always uses the desc set from user
if ( desc_index == 0xEE )
{
- // The 0xEE index string is a Microsoft USB extension.
- // It can be used to tell Windows what driver it should use for the device !!!
+ // The 0xEE index string is a Microsoft OS Descriptors.
+ // https://docs.microsoft.com/en-us/windows-hardware/drivers/usbcon/microsoft-defined-usb-descriptors
return false;
}else
{
|
