Changeset fec47d4 in mainline
- Timestamp:
- 2011-04-08T07:48:06Z (13 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 1c6f4ff, 74a1ba9
- Parents:
- 73ae3373
- Location:
- uspace/drv
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/usbhid/usbhid.c
r73ae3373 rfec47d4 51 51 52 52 /** Mouse polling endpoint description for boot protocol class. */ 53 static usb_endpoint_description_t us h_hid_mouse_poll_endpoint_description = {53 static usb_endpoint_description_t usb_hid_mouse_poll_endpoint_description = { 54 54 .transfer_type = USB_TRANSFER_INTERRUPT, 55 55 .direction = USB_DIRECTION_IN, … … 61 61 62 62 /* Array of endpoints expected on the device, NULL terminated. */ 63 usb_endpoint_description_t 64 *usb_hid_endpoints[USB_HID_POLL_EP_COUNT + 1] = { 65 &ush_hid_kbd_poll_endpoint_description, 66 &ush_hid_mouse_poll_endpoint_description, 63 usb_endpoint_description_t *usb_hid_endpoints[USB_HID_POLL_EP_COUNT + 1] = { 64 &usb_hid_kbd_poll_endpoint_description, 65 &usb_hid_mouse_poll_endpoint_description, 67 66 &usb_hid_generic_poll_endpoint_description, 68 67 NULL -
uspace/drv/usbhid/usbhid.ma
r73ae3373 rfec47d4 1 100 usb&interface&class=HID&subclass=0x01&protocol=0x01 1 2 100 usb&interface&class=HID&subclass=0x01&protocol=0x02 2 3 100 usb&interface&class=HID -
uspace/drv/usbkbd/usbkbd.ma
r73ae3373 rfec47d4 1 10 00usb&interface&class=HID&subclass=0x01&protocol=0x011 10 usb&interface&class=HID&subclass=0x01&protocol=0x01
Note:
See TracChangeset
for help on using the changeset viewer.