You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
TU_LOG(USBD_DBG, "Number of required endpoints: %d is more than max number of endpoints on target: %d\r\n", edpt_total_required_count, edpt_target_max);
1436
+
return false;
1437
+
}
1438
+
1439
+
// ESP32Sx has 6 endpoints, from which only 5 can be confiugred as IN
1440
+
// check if the device has no more than 5 IN endpoints
1441
+
if (CFG_TUD_IN_EP_COUNT>edpt_target_in_max) {
1442
+
TU_LOG(USBD_DBG, "Number of required IN endpoints: %d is more than max number of IN endpoints on target: %d\r\n", CFG_TUD_IN_EP_COUNT, edpt_target_in_max);
0 commit comments