Results 37 comments of mingpepe

@justkawal, the fixed 486b057 is removed in e8adeaf8e6c2f87dd4eb9f3c6da8d6140b9fb304, is there any reason? By the way, what does `_IndexingHolder` class do in `shared_strings.dart`? Seems like we can use a simple list...

After study UVC spec, it seems user defined data is not allowed in payload header, hence I will try to add function for PTS and SCR setting.

I am working on another device which has similar issue. As long as the device needs to dynamically allocate memory for endpoints, the device driver may have this issue. If...

I will send a PR later, it's much clear to see the code. I agree that driver should not know about configuration. As I state previously, driver can tell the...

@hathach the approach to add `max_iso_size` to `dcd_edpt_open` means driver may reserve the memory for particular endpoint? But for UVC class, one interface may have multiple settings for different resolution...

@PanRe, I have traced the code for dwc2 driver but not test actually, just thought the close endpoint order depends on open endpoint order can be better. Copy comments from...

For my application, I need to report as a HID device(interrupt ep) and UVC device(iso ep) and use the 2 devices independently. The following flow cause problem: 1) open HID...

Only memorize the value `next_buffer_ptr` for ISO EP is not enough as HID may open and close after UVC. To solve my problem in this way, 1 pointer is needed...