Changes in uspace/drv/bus/usb/usbhid/usbhid.h [bb70637:3e6a98c5] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/bus/usb/usbhid/usbhid.h
rbb70637 r3e6a98c5 103 103 usb_device_t *usb_dev; 104 104 105 /** Endpont mapping of the polling pipe. */106 u sb_endpoint_mapping_t *poll_pipe_mapping;105 /** Index of the polling pipe in usb_hid_endpoints array. */ 106 unsigned poll_pipe_index; 107 107 108 108 /** Subdrivers. */ … … 132 132 }; 133 133 134 135 136 enum { 137 USB_HID_KBD_POLL_EP_NO = 0, 138 USB_HID_MOUSE_POLL_EP_NO = 1, 139 USB_HID_GENERIC_POLL_EP_NO = 2, 140 USB_HID_POLL_EP_COUNT = 3 141 }; 142 134 143 extern const usb_endpoint_description_t *usb_hid_endpoints[]; 144 145 135 146 136 147 int usb_hid_init(usb_hid_dev_t *hid_dev, usb_device_t *dev);
Note:
See TracChangeset
for help on using the changeset viewer.