Changeset cac458f in mainline for uspace/lib/usbhost/include/usb/host/batch.h
- Timestamp:
- 2011-06-22T01:59:39Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 41e2118
- Parents:
- 79506d6 (diff), f1fae414 (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/batch.h
r79506d6 rcac458f 61 61 }; 62 62 63 /** Printf formatting string for dumping usb_transfer_batch_t. */ 64 #define USB_TRANSFER_BATCH_FMT "[%d:%d %s %s-%s %zuB/%zu]" 65 66 /** Printf arguments for dumping usb_transfer_batch_t. 67 * @param batch USB transfer batch to be dumped. 68 */ 69 #define USB_TRANSFER_BATCH_ARGS(batch) \ 70 (batch).ep->address, (batch).ep->endpoint, \ 71 usb_str_speed((batch).ep->speed), \ 72 usb_str_transfer_type_short((batch).ep->transfer_type), \ 73 usb_str_direction((batch).ep->direction), \ 74 (batch).buffer_size, (batch).ep->max_packet_size 75 76 63 77 void usb_transfer_batch_init( 64 78 usb_transfer_batch_t *instance,
Note:
See TracChangeset
for help on using the changeset viewer.