Changes in uspace/lib/usbhid/src/hidparser.c [3e4f2e0:160b75e] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/usbhid/src/hidparser.c
r3e4f2e0 r160b75e 27 27 */ 28 28 29 /** @addtogroup libusb 29 /** @addtogroup libusbhid 30 30 * @{ 31 31 */ … … 33 33 * HID report descriptor and report data parser implementation. 34 34 */ 35 #include <usb/ classes/hidparser.h>35 #include <usb/hid/hidparser.h> 36 36 #include <errno.h> 37 37 #include <stdio.h> … … 46 46 */ 47 47 uint32_t usb_hid_report_tag_data_uint32(const uint8_t *data, size_t size); 48 inline size_t usb_hid_count_item_offset(usb_hid_report_item_t * report_item, size_t offset);48 //inline size_t usb_hid_count_item_offset(usb_hid_report_item_t * report_item, size_t offset); 49 49 int usb_hid_translate_data(usb_hid_report_field_t *item, const uint8_t *data); 50 50 uint32_t usb_hid_translate_data_reverse(usb_hid_report_field_t *item, int32_t value);
Note:
See TracChangeset
for help on using the changeset viewer.