Changes in uspace/lib/usb/src/hidparser.c [64dbc83:70a71e5] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/usb/src/hidparser.c
r64dbc83 r70a71e5 64 64 int usb_hid_report_reset_local_items(); 65 65 void usb_hid_free_report_list(link_t *head); 66 usb_hid_report_item_t *usb_hid_report_item_clone(const usb_hid_report_item_t *item); 66 67 67 /* 68 68 * Data translation private functions … … 106 106 list_initialize(&(parser->feature)); 107 107 108 list_initialize(&(parser->stack));109 110 parser->use_report_id = 0;111 108 return EOK; 112 109 } … … 189 186 tmp_usage_path = NULL; 190 187 191 usb_hid_report_path_set_report_id(report_item->usage_path, report_item->id);192 if(report_item->id != 0){193 parser->use_report_id = 1;194 }195 188 196 189 switch(tag) { … … 222 215 if(!(new_report_item = malloc(sizeof(usb_hid_report_item_t)))) { 223 216 return ENOMEM; 224 } 217 } 225 218 memcpy(new_report_item,report_item, sizeof(usb_hid_report_item_t)); 226 link_initialize(&(new_report_item->link));227 228 219 /* reset local items */ 229 220 new_report_item->usage_minimum = 0; 230 221 new_report_item->usage_maximum = 0; 231 new_report_item->designator_index = 0;232 new_report_item->designator_minimum = 0;233 new_report_item->designator_maximum = 0;234 new_report_item->string_index = 0;235 new_report_item->string_minimum = 0;236 new_report_item->string_maximum = 0;237 238 /* reset usage from current usage path */239 usb_hid_report_usage_path_t *path = list_get_instance(&usage_path->link, usb_hid_report_usage_path_t, link);240 path->usage = 0;241 222 223 link_initialize(&(new_report_item->link)); 242 224 report_item = new_report_item; 243 225 … … 245 227 case USB_HID_REPORT_TAG_PUSH: 246 228 // push current state to stack 247 new_report_item = usb_hid_report_item_clone(report_item); 248 list_prepend (&parser->stack, &new_report_item->link); 249 229 // not yet implemented 250 230 break; 251 231 case USB_HID_REPORT_TAG_POP: 252 232 // restore current state from stack 253 if(list_empty (&parser->stack)) { 254 return EINVAL; 255 } 256 257 report_item = list_get_instance(&parser->stack, usb_hid_report_item_t, link); 258 list_remove (parser->stack.next); 259 233 // not yet implemented 260 234 break; 261 235 … … 673 647 } 674 648 675 parser->use_report_id = 0;676 677 649 usb_hid_free_report_list(&parser->input); 678 650 usb_hid_free_report_list(&parser->output); … … 704 676 size_t i=0; 705 677 size_t j=0; 706 uint8_t report_id = 0;707 678 708 679 if(parser == NULL) { … … 715 686 if(!(keys = malloc(sizeof(uint8_t) * key_count))){ 716 687 return ENOMEM; 717 }718 719 if(parser->use_report_id != 0) {720 report_id = data[0];721 usb_hid_report_path_set_report_id(path, report_id);722 688 } 723 689 … … 727 693 728 694 item = list_get_instance(list_item, usb_hid_report_item_t, link); 729 730 695 if(!USB_HID_ITEM_FLAG_CONSTANT(item->item_flags) && 731 696 (usb_hid_report_compare_usage_path(item->usage_path, path, flags) == EOK)) { … … 750 715 } 751 716 752 callbacks->keyboard(keys, key_count, report_id, arg);717 callbacks->keyboard(keys, key_count, 0, arg); 753 718 754 719 free(keys); … … 774 739 int32_t mask; 775 740 const uint8_t *foo; 776 741 777 742 // now only common numbers llowed 778 743 if(item->size > 32) { … … 793 758 (usb_pow(10,(item->unit_exponent)))); 794 759 } 795 796 760 offset = item->offset + (j * item->size); 797 if(item->id != 0) {798 offset += 8;799 usb_log_debug("MOVED OFFSET BY 1Byte, REPORT_ID(%d)\n", item->id);800 }801 761 802 762 // FIXME … … 982 942 983 943 int only_page; 984 985 if(report_path->report_id != path->report_id) {986 return 1;987 }988 944 989 945 if(path->depth == 0){ … … 1082 1038 else { 1083 1039 path->depth = 0; 1084 path->report_id = 0;1085 1040 list_initialize(&path->link); 1086 1041 return path; … … 1200 1155 return 0; 1201 1156 } 1202 1157 1203 1158 item = parser->output.next; 1204 1159 while(&parser->output != item) { … … 1240 1195 int length; 1241 1196 int32_t tmp_value; 1242 size_t offset_prefix = 0;1243 1197 1244 1198 if(parser == NULL) { 1245 1199 return EINVAL; 1246 }1247 1248 if(parser->use_report_id != 0) {1249 buffer[0] = path->report_id;1250 offset_prefix = 8;1251 1200 } 1252 1201 … … 1269 1218 // // variable item 1270 1219 value = usb_hid_translate_data_reverse(report_item, data[idx++]); 1271 offset = report_item->offset + (i * report_item->size) + offset_prefix;1220 offset = report_item->offset + (i * report_item->size); 1272 1221 length = report_item->size; 1273 1222 } … … 1275 1224 //bitmap 1276 1225 value += usb_hid_translate_data_reverse(report_item, data[idx++]); 1277 offset = report_item->offset + offset_prefix;1226 offset = report_item->offset; 1278 1227 length = report_item->size * report_item->count; 1279 1228 } … … 1374 1323 1375 1324 1376 int usb_hid_report_path_set_report_id(usb_hid_report_path_t *path, uint8_t report_id)1377 {1378 if(path == NULL){1379 return EINVAL;1380 }1381 1382 path->report_id = report_id;1383 return EOK;1384 }1385 1386 1387 usb_hid_report_item_t *usb_hid_report_item_clone(const usb_hid_report_item_t *item)1388 {1389 usb_hid_report_item_t *new_report_item;1390 1391 if(!(new_report_item = malloc(sizeof(usb_hid_report_item_t)))) {1392 return NULL;1393 }1394 memcpy(new_report_item,item, sizeof(usb_hid_report_item_t));1395 link_initialize(&(new_report_item->link));1396 1397 return new_report_item;1398 }1399 1400 1325 /** 1401 1326 * @}
Note:
See TracChangeset
for help on using the changeset viewer.