Changeset 93ef8f6 in mainline
- Timestamp:
- 2011-02-02T23:13:34Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 9d4579e
- Parents:
- ab65fa1
- Location:
- uspace/lib/usb
- Files:
-
- 1 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/usb/Makefile
rab65fa1 r93ef8f6 44 44 src/localdrv.c \ 45 45 src/pipes.c \ 46 src/pipesinit.c \ 46 47 src/recognise.c \ 47 48 src/remotedrv.c \ -
uspace/lib/usb/include/usb/pipes.h
rab65fa1 r93ef8f6 38 38 #include <sys/types.h> 39 39 #include <usb/usb.h> 40 #include <usb/descriptor.h> 40 41 #include <ipc/devman.h> 41 42 #include <driver.h> … … 79 80 } usb_endpoint_pipe_t; 80 81 82 /** Flag for default control pipe. */ 83 #define USB_ENDPOINT_DESCRIPTION_DEFAULT_CONTROL_PIPE 1 84 85 /** Description of endpoint characteristics. */ 86 typedef struct { 87 /** Transfer type (e.g. control or interrupt). */ 88 usb_transfer_type_t transfer_type; 89 /** Transfer direction (to or from a device). */ 90 usb_direction_t direction; 91 /** Interface class this endpoint belongs to (-1 for any). */ 92 int interface_class; 93 /** Interface subclass this endpoint belongs to (-1 for any). */ 94 int interface_subclass; 95 /** Interface protocol this endpoint belogs to (-1 for any). */ 96 int interface_protocol; 97 /** Extra endpoint flags. */ 98 unsigned int flags; 99 } usb_endpoint_description_t; 100 101 /** Mapping of endpoint pipes and endpoint descriptions. */ 102 typedef struct { 103 /** Endpoint pipe. */ 104 usb_endpoint_pipe_t *pipe; 105 /** Endpoint description. */ 106 const usb_endpoint_description_t *description; 107 /** Found descriptor fitting the description. */ 108 usb_standard_endpoint_descriptor_t *descriptor; 109 /** Whether the endpoint was actually found. */ 110 bool present; 111 } usb_endpoint_mapping_t; 81 112 82 113 int usb_device_connection_initialize_from_device(usb_device_connection_t *, … … 90 121 int usb_endpoint_pipe_initialize_default_control(usb_endpoint_pipe_t *, 91 122 usb_device_connection_t *); 123 int usb_endpoint_pipe_initialize_from_configuration(usb_endpoint_mapping_t *, 124 size_t, uint8_t *, size_t, usb_device_connection_t *); 92 125 93 126
Note:
See TracChangeset
for help on using the changeset viewer.