Changeset aaa3d82b in mainline for uspace/lib/usbhid/include/usb/hid/hidtypes.h
- Timestamp:
- 2011-05-27T07:36:50Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- ff41576d
- Parents:
- 3e95cd7 (diff), d861c22 (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/usbhid/include/usb/hid/hidtypes.h
r3e95cd7 raaa3d82b 72 72 73 73 /** 74 * Report type74 * Enum of report types 75 75 */ 76 76 typedef enum { 77 /** Input report. Data are sent from device to system */ 77 78 USB_HID_REPORT_TYPE_INPUT = 1, 79 80 /** Output report. Data are sent from system to device */ 78 81 USB_HID_REPORT_TYPE_OUTPUT = 2, 82 83 /** Feature report. Describes device configuration information that 84 * can be sent to the device */ 79 85 USB_HID_REPORT_TYPE_FEATURE = 3 80 86 } usb_hid_report_type_t;
Note:
See TracChangeset
for help on using the changeset viewer.