|
|
@@ -73,8 +73,8 @@ tusb_desc_device_t const data_desc_device =
|
|
|
|
|
|
uint8_t const data_desc_configuration[] =
|
|
|
{
|
|
|
- // Interface count, string index, total length, attribute, power in mA
|
|
|
- TUD_CONFIG_DESCRIPTOR(0, 0, TUD_CONFIG_DESC_LEN, TUSB_DESC_CONFIG_ATT_REMOTE_WAKEUP, 100),
|
|
|
+ // Config number, interface count, string index, total length, attribute, power in mA
|
|
|
+ TUD_CONFIG_DESCRIPTOR(1, 0, 0, TUD_CONFIG_DESC_LEN, TUSB_DESC_CONFIG_ATT_REMOTE_WAKEUP, 100),
|
|
|
};
|
|
|
|
|
|
tusb_control_request_t const req_get_desc_device =
|
|
|
@@ -211,8 +211,8 @@ void test_usbd_control_in_zlp(void)
|
|
|
// ZLP must be return
|
|
|
uint8_t zlp_desc_configuration[CFG_TUD_ENDOINT0_SIZE*2] =
|
|
|
{
|
|
|
- // Interface count, string index, total length, attribute, power in mA
|
|
|
- TUD_CONFIG_DESCRIPTOR(0, 0, CFG_TUD_ENDOINT0_SIZE*2, TUSB_DESC_CONFIG_ATT_REMOTE_WAKEUP, 100),
|
|
|
+ // Config number, interface count, string index, total length, attribute, power in mA
|
|
|
+ TUD_CONFIG_DESCRIPTOR(1, 0, 0, CFG_TUD_ENDOINT0_SIZE*2, TUSB_DESC_CONFIG_ATT_REMOTE_WAKEUP, 100),
|
|
|
};
|
|
|
|
|
|
desc_configuration = zlp_desc_configuration;
|