Changeset cdc1aa1 in mainline for uspace/lib/usb/include
- Timestamp:
- 2010-12-10T09:50:58Z (15 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 7964475, bf2063e9
- Parents:
- 040068c (diff), 99ea659c (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. - Location:
- uspace/lib/usb/include/usb
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/usb/include/usb/devreq.h
r040068c rcdc1aa1 38 38 #include <ipc/ipc.h> 39 39 #include <async.h> 40 #include <usb/usb.h> 41 #include <usb/descriptor.h> 40 42 41 43 /** Standard device request. */ … … 83 85 } __attribute__ ((packed)) usb_device_request_setup_packet_t; 84 86 87 int usb_drv_req_set_address(int, usb_address_t, usb_address_t); 88 int usb_drv_req_get_device_descriptor(int, usb_address_t, 89 usb_standard_device_descriptor_t *); 90 int usb_drv_req_get_bare_configuration_descriptor(int, usb_address_t, int, 91 usb_standard_configuration_descriptor_t *); 92 int usb_drv_req_get_full_configuration_descriptor(int, usb_address_t, int, 93 void *, size_t, size_t *); 94 95 85 96 #endif 86 97 /** -
uspace/lib/usb/include/usb/usbdrv.h
r040068c rcdc1aa1 72 72 int usb_drv_psync_control_write_status(int, usb_target_t); 73 73 74 int usb_drv_psync_control_write(int, usb_target_t, 75 void *, size_t, void *, size_t); 76 74 77 75 78 int usb_drv_async_control_read_setup(int, usb_target_t, … … 84 87 int usb_drv_psync_control_read_status(int, usb_target_t); 85 88 89 int usb_drv_psync_control_read(int, usb_target_t, 90 void *, size_t, void *, size_t, size_t *); 91 92 86 93 87 94 int usb_drv_async_wait_for(usb_handle_t); 88 95 89 90 int usb_drv_req_set_address(int, usb_address_t, usb_address_t);91 int usb_drv_req_get_device_descriptor(int, usb_address_t,92 usb_standard_device_descriptor_t *);93 96 94 97 #endif
Note:
See TracChangeset
for help on using the changeset viewer.
