Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/usb/include/usb/pipes.h

    re9ce696 rfa0f53b  
    9999        /** Number of active transfers over the pipe. */
    100100        int refcount;
     101
     102        /** Whether to automatically reset halt on the endpoint.
     103         * Valid only for control endpoint zero.
     104         */
     105        bool auto_reset_halt;
    101106} usb_pipe_t;
    102107
     
    153158int usb_pipe_initialize_from_configuration(usb_endpoint_mapping_t *,
    154159    size_t, uint8_t *, size_t, usb_device_connection_t *);
     160int usb_pipe_register_with_speed(usb_pipe_t *, usb_speed_t,
     161    unsigned int, usb_hc_connection_t *);
    155162int usb_pipe_register(usb_pipe_t *, unsigned int, usb_hc_connection_t *);
    156163int usb_pipe_unregister(usb_pipe_t *, usb_hc_connection_t *);
Note: See TracChangeset for help on using the changeset viewer.