Changes in uspace/lib/usb/include/usb/devdrv.h [e484f3b:09daa8b] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/usb/include/usb/devdrv.h
re484f3b r09daa8b 38 38 #include <usb/pipes.h> 39 39 40 /** Descriptors for USB device. */41 typedef struct {42 /** Standard device descriptor. */43 usb_standard_device_descriptor_t device;44 /** Full configuration descriptor of current configuration. */45 uint8_t *configuration;46 size_t configuration_size;47 } usb_device_descriptors_t;48 49 40 /** USB device structure. */ 50 41 typedef struct { 51 42 /** The default control pipe. */ 52 usb_ pipe_t ctrl_pipe;43 usb_endpoint_pipe_t ctrl_pipe; 53 44 /** Other endpoint pipes. 54 45 * This is an array of other endpoint pipes in the same order as … … 61 52 */ 62 53 int interface_no; 63 64 /** Some useful descriptors. */65 usb_device_descriptors_t descriptors;66 67 54 /** Generic DDF device backing this one. */ 68 55 ddf_dev_t *ddf_dev;
Note:
See TracChangeset
for help on using the changeset viewer.