Changeset 6e3c005 in mainline for uspace/lib/usbdev/src/devpoll.c
- Timestamp:
- 2011-12-14T15:29:41Z (13 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- a0487a2
- Parents:
- 22ecbde
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/usbdev/src/devpoll.c
r22ecbde r6e3c005 46 46 /** Data needed for polling. */ 47 47 typedef struct { 48 /** Parameters for automated polling. */ 48 49 usb_device_auto_polling_t auto_polling; 49 50 51 /** USB device to poll. */ 50 52 usb_device_t *dev; 53 /** Device pipe to use for polling. */ 51 54 size_t pipe_index; 55 /** Size of the recieved data. */ 52 56 size_t request_size; 57 /** Data buffer. */ 53 58 uint8_t *buffer; 59 /** Argument to pass to callbacks. */ 54 60 void *custom_arg; 55 61 } polling_data_t;
Note:
See TracChangeset
for help on using the changeset viewer.