diff options
| author | hathach <[email protected]> | 2021-08-26 17:08:22 +0700 |
|---|---|---|
| committer | hathach <[email protected]> | 2021-08-26 17:08:22 +0700 |
| commit | ed4602158bb4e19f4dba122383be1c4845914bde (patch) | |
| tree | 7cbecd887af95352d51ff6393cb152fdc5956c73 /examples/device/hid_generic_inout/src | |
| parent | 71e77e47fa6056937bfcd1a883a66e2bc0b622b2 (diff) | |
TD 9.12 remote wakeup test
remove TUSB_DESC_CONFIG_ATT_REMOTE_WAKEUP attribute from non-hid
examples
Diffstat (limited to 'examples/device/hid_generic_inout/src')
| -rw-r--r-- | examples/device/hid_generic_inout/src/usb_descriptors.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/device/hid_generic_inout/src/usb_descriptors.c b/examples/device/hid_generic_inout/src/usb_descriptors.c index 5a2f5ffdc..5dabf42a3 100644 --- a/examples/device/hid_generic_inout/src/usb_descriptors.c +++ b/examples/device/hid_generic_inout/src/usb_descriptors.c @@ -101,7 +101,7 @@ enum uint8_t const desc_configuration[] = { // Config number, interface count, string index, total length, attribute, power in mA - TUD_CONFIG_DESCRIPTOR(1, ITF_NUM_TOTAL, 0, CONFIG_TOTAL_LEN, TUSB_DESC_CONFIG_ATT_REMOTE_WAKEUP, 100), + TUD_CONFIG_DESCRIPTOR(1, ITF_NUM_TOTAL, 0, CONFIG_TOTAL_LEN, 0x00, 100), // Interface number, string index, protocol, report descriptor len, EP In & Out address, size & polling interval TUD_HID_INOUT_DESCRIPTOR(ITF_NUM_HID, 0, HID_ITF_PROTOCOL_NONE, sizeof(desc_hid_report), EPNUM_HID, 0x80 | EPNUM_HID, CFG_TUD_HID_EP_BUFSIZE, 10) |
