Changeset b4b534ac in mainline for uspace/lib/usbhost/include/usb/host/endpoint.h
- Timestamp:
- 2016-07-22T08:24:47Z (8 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- f76d2c2
- Parents:
- 5b18137 (diff), 8351f9a4 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/usbhost/include/usb/host/endpoint.h
r5b18137 rb4b534ac 57 57 /** Maximum size of data packets. */ 58 58 size_t max_packet_size; 59 /** Additional opportunities per uframe */ 60 unsigned packets; 59 61 /** Necessary bandwidth. */ 60 62 size_t bandwidth; … … 67 69 /** Signals change of active status. */ 68 70 fibril_condvar_t avail; 71 /** High speed TT data */ 72 struct { 73 usb_address_t address; 74 unsigned port; 75 } tt; 69 76 /** Optional device specific data. */ 70 77 struct { … … 80 87 endpoint_t * endpoint_create(usb_address_t address, usb_endpoint_t endpoint, 81 88 usb_direction_t direction, usb_transfer_type_t type, usb_speed_t speed, 82 size_t max_packet_size, size_t bw); 89 size_t max_packet_size, unsigned packets, size_t bw, 90 usb_address_t tt_address, unsigned tt_port); 83 91 void endpoint_destroy(endpoint_t *instance); 84 92
Note:
See TracChangeset
for help on using the changeset viewer.