Changeset da3965e in mainline
- Timestamp:
- 2011-03-01T23:11:40Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- e259d95
- Parents:
- e24e7b1
- Location:
- uspace/lib/usb
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/usb/include/usb/classes/hidparser.h
re24e7b1 rda3965e 37 37 38 38 #include <stdint.h> 39 #include <adt/list.h> 40 #include <usb/classes/hid_report_items.h> 39 41 40 42 /** -
uspace/lib/usb/src/hidparser.c
re24e7b1 rda3965e 55 55 int usb_hid_report_reset_local_items(); 56 56 void usb_hid_free_report_list(link_t *head); 57 57 int32_t usb_hid_report_tag_data_int32(uint8_t *data, size_t size); 58 58 /** 59 59 * … … 68 68 list_initialize(&(parser->output)); 69 69 list_initialize(&(parser->feature)); 70 70 71 return EOK; 71 72 } 72 73 … … 384 385 return -1; //TODO ERROR CODE INVALID GLOBAL TAG 385 386 } 387 388 return EOK; 386 389 } 387 390 … … 435 438 return -1; //TODO ERROR CODE INVALID LOCAL TAG NOW IS ONLY UNSUPPORTED 436 439 } 440 441 return EOK; 437 442 } 438 443 … … 446 451 int32_t usb_hid_report_tag_data_int32(uint8_t *data, size_t size) 447 452 { 448 int i;453 unsigned int i; 449 454 int32_t result; 450 455
Note:
See TracChangeset
for help on using the changeset viewer.