Changes in / [6c6a95d2:1ce4189] in mainline
- Location:
- uspace
- Files:
-
- 12 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/usbhid/generic/hiddev.c
r6c6a95d2 r1ce4189 39 39 #include <errno.h> 40 40 #include <str_error.h> 41 #include <bool.h> 41 42 42 43 #include <usbhid_iface.h> … … 64 65 size_t size, size_t *act_size, unsigned int flags); 65 66 67 static int usb_generic_hid_client_connected(ddf_fun_t *fun); 68 66 69 /*----------------------------------------------------------------------------*/ 67 70 … … 72 75 73 76 static ddf_dev_ops_t usb_generic_hid_ops = { 74 .interfaces[USBHID_DEV_IFACE] = &usb_generic_iface 77 .interfaces[USBHID_DEV_IFACE] = &usb_generic_iface, 78 .open = usb_generic_hid_client_connected 75 79 }; 76 80 … … 104 108 105 109 /*! @todo This should probably be atomic. */ 106 memcpy(buffer, hid_dev->input_report, hid_dev->input_report_size); 107 *act_size = hid_dev->input_report_size; 110 if (usb_hid_report_ready()) { 111 memcpy(buffer, hid_dev->input_report, 112 hid_dev->input_report_size); 113 *act_size = hid_dev->input_report_size; 114 usb_hid_report_received(); 115 } 108 116 109 117 // clear the buffer so that it will not be received twice 110 memset(hid_dev->input_report, 0, hid_dev->input_report_size);118 //memset(hid_dev->input_report, 0, hid_dev->input_report_size); 111 119 120 // note that we already received this report 121 // report_received = true; 122 123 return EOK; 124 } 125 126 /*----------------------------------------------------------------------------*/ 127 128 static int usb_generic_hid_client_connected(ddf_fun_t *fun) 129 { 130 usb_hid_report_received(); 112 131 return EOK; 113 132 } -
uspace/drv/usbhid/kbd/kbddev.c
r6c6a95d2 r1ce4189 255 255 256 256 if (hid_dev == NULL || hid_dev->data == NULL) { 257 usb_log_debug("default_connection_handler: " 258 "Missing parameter.\n"); 257 259 async_answer_0(icallid, EINVAL); 258 260 return; … … 267 269 268 270 if (kbd_dev->console_phone != -1) { 271 usb_log_debug("default_connection_handler: " 272 "console phone already set\n"); 269 273 async_answer_0(icallid, ELIMIT); 270 274 return; … … 272 276 273 277 kbd_dev->console_phone = callback; 278 279 usb_log_debug("default_connection_handler: OK\n"); 274 280 async_answer_0(icallid, EOK); 275 281 return; 276 282 } 277 283 284 usb_log_debug("default_connection_handler: Wrong function.\n"); 278 285 async_answer_0(icallid, EINVAL); 279 286 } -
uspace/drv/usbhid/mouse/mousedev.c
r6c6a95d2 r1ce4189 43 43 #include <str_error.h> 44 44 #include <ipc/mouse.h> 45 #include <io/console.h> 46 47 #include <ipc/kbd.h> 48 #include <io/keycode.h> 45 49 46 50 #include "mousedev.h" … … 61 65 62 66 const char *HID_MOUSE_FUN_NAME = "mouse"; 67 const char *HID_MOUSE_WHEEL_FUN_NAME = "mouse-wheel"; 63 68 const char *HID_MOUSE_CLASS_NAME = "mouse"; 69 const char *HID_MOUSE_WHEEL_CLASS_NAME = "keyboard"; 64 70 65 71 /** Default idle rate for mouses. */ … … 119 125 120 126 if (hid_dev == NULL || hid_dev->data == NULL) { 127 usb_log_debug("default_connection_handler: Missing " 128 "parameters.\n"); 121 129 async_answer_0(icallid, EINVAL); 122 130 return; … … 127 135 usb_mouse_t *mouse_dev = (usb_mouse_t *)hid_dev->data; 128 136 137 int *phone = (str_cmp(fun->name, HID_MOUSE_FUN_NAME) == 0) 138 ? &mouse_dev->mouse_phone : &mouse_dev->wheel_phone; 139 129 140 if (method == IPC_M_CONNECT_TO_ME) { 130 141 int callback = IPC_GET_ARG5(*icall); 131 142 132 if (mouse_dev->console_phone != -1) { 143 if (*phone != -1) { 144 usb_log_debug("default_connection_handler: Console " 145 "phone to mouse already set.\n"); 133 146 async_answer_0(icallid, ELIMIT); 147 //async_answer_0(icallid, EOK); 134 148 return; 135 149 } 136 150 137 mouse_dev->console_phone = callback;151 *phone = callback; 138 152 usb_log_debug("Console phone to mouse set ok (%d).\n", callback); 139 153 async_answer_0(icallid, EOK); … … 141 155 } 142 156 157 usb_log_debug("default_connection_handler: Invalid function.\n"); 143 158 async_answer_0(icallid, EINVAL); 144 159 } … … 152 167 return NULL; 153 168 } 154 mouse->console_phone = -1; 169 mouse->mouse_phone = -1; 170 mouse->wheel_phone = -1; 155 171 156 172 return mouse; … … 164 180 165 181 // hangup phone to the console 166 if ((*mouse_dev)->console_phone >= 0) { 167 async_hangup((*mouse_dev)->console_phone); 182 if ((*mouse_dev)->mouse_phone >= 0) { 183 async_hangup((*mouse_dev)->mouse_phone); 184 } 185 186 if ((*mouse_dev)->wheel_phone >= 0) { 187 async_hangup((*mouse_dev)->wheel_phone); 168 188 } 169 189 … … 174 194 /*----------------------------------------------------------------------------*/ 175 195 176 static bool usb_mouse_process_boot_report(usb_hid_dev_t *hid_dev, 177 uint8_t *buffer, size_t buffer_size) 196 static void usb_mouse_send_wheel(const usb_mouse_t *mouse_dev, int wheel) 197 { 198 console_event_t ev; 199 200 ev.type = KEY_PRESS; 201 ev.key = (wheel > 0) ? KC_UP : (wheel < 0) ? KC_DOWN : 0; 202 ev.mods = 0; 203 ev.c = 0; 204 205 if (mouse_dev->wheel_phone < 0) { 206 usb_log_warning( 207 "Connection to console not ready, key discarded.\n"); 208 return; 209 } 210 211 int count = (wheel < 0) ? -wheel : wheel; 212 int i; 213 214 for (i = 0; i < count * 3; ++i) { 215 usb_log_debug2("Sending key %d to the console\n", ev.key); 216 async_msg_4(mouse_dev->wheel_phone, KBD_EVENT, ev.type, 217 ev.key, ev.mods, ev.c); 218 // send key release right away 219 async_msg_4(mouse_dev->wheel_phone, KBD_EVENT, KEY_RELEASE, 220 ev.key, ev.mods, ev.c); 221 } 222 } 223 224 /*----------------------------------------------------------------------------*/ 225 226 static bool usb_mouse_process_report(usb_hid_dev_t *hid_dev, uint8_t *buffer, 227 size_t buffer_size) 178 228 { 179 229 usb_mouse_t *mouse_dev = (usb_mouse_t *)hid_dev->data; … … 182 232 usb_debug_str_buffer(buffer, buffer_size, 0)); 183 233 184 if (mouse_dev-> console_phone < 0) {234 if (mouse_dev->mouse_phone < 0) { 185 235 usb_log_error(NAME " No console phone.\n"); 186 236 return false; // ?? … … 252 302 253 303 if ((shift_x != 0) || (shift_y != 0)) { 254 async_req_2_0(mouse_dev-> console_phone,304 async_req_2_0(mouse_dev->mouse_phone, 255 305 MEVENT_MOVE, shift_x, shift_y); 256 306 } 307 308 /* 309 * Wheel 310 */ 311 int wheel; 312 313 path = usb_hid_report_path(); 314 usb_hid_report_path_append_item(path, USB_HIDUT_PAGE_GENERIC_DESKTOP, 315 USB_HIDUT_USAGE_GENERIC_DESKTOP_WHEEL); 316 317 usb_hid_report_path_set_report_id(path, report_id); 318 319 field = usb_hid_report_get_sibling( 320 hid_dev->report, NULL, path, USB_HID_PATH_COMPARE_END, 321 USB_HID_REPORT_TYPE_INPUT); 322 323 if (field != NULL) { 324 usb_log_debug(NAME " VALUE(%X) USAGE(%X)\n", field->value, 325 field->usage); 326 wheel = field->value; 327 } 328 329 usb_hid_report_path_free(path); 330 331 // send arrow up for positive direction and arrow down for negative 332 // direction; three arrows for difference of 1 333 usb_mouse_send_wheel(mouse_dev, wheel); 334 257 335 258 336 /* … … 274 352 if (mouse_dev->buttons[field->usage - field->usage_minimum] == 0 275 353 && field->value != 0) { 276 async_req_2_0(mouse_dev-> console_phone,354 async_req_2_0(mouse_dev->mouse_phone, 277 355 MEVENT_BUTTON, field->usage, 1); 278 356 mouse_dev->buttons[field->usage - field->usage_minimum] … … 281 359 mouse_dev->buttons[field->usage - field->usage_minimum] != 0 282 360 && field->value == 0) { 283 async_req_2_0(mouse_dev-> console_phone,361 async_req_2_0(mouse_dev->mouse_phone, 284 362 MEVENT_BUTTON, field->usage, 0); 285 363 mouse_dev->buttons[field->usage - field->usage_minimum] … … 337 415 } 338 416 417 /* 418 * Special function for acting as keyboard (wheel) 419 */ 420 usb_log_debug("Creating DDF function %s...\n", 421 HID_MOUSE_WHEEL_FUN_NAME); 422 fun = ddf_fun_create(hid_dev->usb_dev->ddf_dev, fun_exposed, 423 HID_MOUSE_WHEEL_FUN_NAME); 424 if (fun == NULL) { 425 usb_log_error("Could not create DDF function node.\n"); 426 return ENOMEM; 427 } 428 429 /* 430 * Store the initialized HID device and HID ops 431 * to the DDF function. 432 */ 433 fun->ops = &hid_dev->ops; 434 fun->driver_data = hid_dev; // TODO: maybe change to hid_dev->data 435 436 rc = ddf_fun_bind(fun); 437 if (rc != EOK) { 438 usb_log_error("Could not bind DDF function: %s.\n", 439 str_error(rc)); 440 ddf_fun_destroy(fun); 441 return rc; 442 } 443 444 usb_log_debug("Adding DDF function to class %s...\n", 445 HID_MOUSE_WHEEL_CLASS_NAME); 446 rc = ddf_fun_add_to_class(fun, HID_MOUSE_WHEEL_CLASS_NAME); 447 if (rc != EOK) { 448 usb_log_error( 449 "Could not add DDF function to class %s: %s.\n", 450 HID_MOUSE_WHEEL_CLASS_NAME, str_error(rc)); 451 ddf_fun_destroy(fun); 452 return rc; 453 } 454 339 455 return EOK; 340 456 } … … 407 523 } 408 524 409 return usb_mouse_process_ boot_report(hid_dev, buffer, buffer_size);525 return usb_mouse_process_report(hid_dev, buffer, buffer_size); 410 526 } 411 527 -
uspace/drv/usbhid/mouse/mousedev.h
r6c6a95d2 r1ce4189 48 48 //suseconds_t poll_interval_us; 49 49 /** IPC phone to console (consumer). */ 50 int console_phone; 50 int mouse_phone; 51 int wheel_phone; 51 52 52 53 int32_t *buttons; -
uspace/drv/usbhid/subdrivers.c
r6c6a95d2 r1ce4189 36 36 #include "subdrivers.h" 37 37 #include "usb/classes/hidut.h" 38 #include "usb/classes/hidpath.h" 38 39 39 40 #include "lgtch-ultrax/lgtch-ultrax.h" 41 #include "mouse/mousedev.h" 40 42 41 43 static usb_hid_subdriver_usage_t path_kbd[] = { 42 44 {USB_HIDUT_PAGE_KEYBOARD, 0}, 45 {0, 0} 46 }; 47 48 static usb_hid_subdriver_usage_t path_mouse[] = { 49 {USB_HIDUT_PAGE_GENERIC_DESKTOP, USB_HIDUT_USAGE_GENERIC_DESKTOP_MOUSE}, 50 {USB_HIDUT_PAGE_GENERIC_DESKTOP, 51 USB_HIDUT_USAGE_GENERIC_DESKTOP_POINTER}, 52 {0, 0} 53 }; 54 55 static usb_hid_subdriver_usage_t path_mouse2[] = { 56 {USB_HIDUT_PAGE_GENERIC_DESKTOP, USB_HIDUT_USAGE_GENERIC_DESKTOP_X}, 43 57 {0, 0} 44 58 }; … … 79 93 } 80 94 }, 95 { 96 path_mouse, 97 -1, 98 USB_HID_PATH_COMPARE_COLLECTION_ONLY, 99 -1, 100 -1, 101 { 102 .init = usb_mouse_init, 103 .deinit = usb_mouse_deinit, 104 .poll = usb_mouse_polling_callback, 105 .poll_end = NULL 106 } 107 }, 108 { 109 path_mouse2, 110 -1, 111 USB_HID_PATH_COMPARE_END 112 | USB_HID_PATH_COMPARE_USAGE_PAGE_ONLY, 113 -1, 114 -1, 115 { 116 .init = usb_mouse_init, 117 .deinit = usb_mouse_deinit, 118 .poll = usb_mouse_polling_callback, 119 .poll_end = NULL 120 } 121 }, 81 122 {NULL, -1, 0, -1, -1, {NULL, NULL, NULL, NULL}} 82 123 }; -
uspace/drv/usbhid/usbhid.c
r6c6a95d2 r1ce4189 63 63 static const int USB_HID_MAX_SUBDRIVERS = 10; 64 64 65 static fibril_local bool report_received; 66 65 67 /*----------------------------------------------------------------------------*/ 66 68 … … 412 414 } 413 415 414 // TODO: remove the mouse hack 415 if (hid_dev->poll_pipe_index == USB_HID_MOUSE_POLL_EP_NO || 416 fallback) { 416 if (fallback) { 417 417 // fall back to boot protocol 418 418 switch (hid_dev->poll_pipe_index) { … … 509 509 free(input_old); 510 510 } 511 usb_hid_new_report(); 511 512 } 512 513 } … … 589 590 /*----------------------------------------------------------------------------*/ 590 591 592 void usb_hid_new_report(void) 593 { 594 report_received = false; 595 } 596 597 /*----------------------------------------------------------------------------*/ 598 599 void usb_hid_report_received(void) 600 { 601 report_received = true; 602 } 603 604 /*----------------------------------------------------------------------------*/ 605 606 bool usb_hid_report_ready(void) 607 { 608 return !report_received; 609 } 610 611 /*----------------------------------------------------------------------------*/ 612 591 613 void usb_hid_free(usb_hid_dev_t **hid_dev) 592 614 { -
uspace/drv/usbhid/usbhid.h
r6c6a95d2 r1ce4189 44 44 #include <usb/devdrv.h> 45 45 #include <usb/classes/hid.h> 46 #include <bool.h> 46 47 47 48 struct usb_hid_dev; … … 128 129 //const char *usb_hid_get_class_name(const usb_hid_dev_t *hid_dev); 129 130 131 void usb_hid_new_report(void); 132 133 void usb_hid_report_received(void); 134 135 bool usb_hid_report_ready(void); 136 130 137 void usb_hid_free(usb_hid_dev_t **hid_dev); 131 138 -
uspace/lib/usb/include/usb/classes/hiddescriptor.h
r6c6a95d2 r1ce4189 78 78 uint32_t usb_hid_report_tag_data_uint32(const uint8_t *data, size_t size); 79 79 80 usb_hid_report_path_t *usb_hid_report_path_try_insert(usb_hid_report_t *report, usb_hid_report_path_t *cmp_path); 80 81 #endif 81 82 /** -
uspace/lib/usb/include/usb/classes/hidpath.h
r6c6a95d2 r1ce4189 43 43 * Description of path of usage pages and usages in report descriptor 44 44 */ 45 /** Wanted usage path must be exactly the same as the searched one */ 45 46 #define USB_HID_PATH_COMPARE_STRICT 0 46 #define USB_HID_PATH_COMPARE_END 1 47 /** Wanted usage path must be the suffix in the searched one */ 48 #define USB_HID_PATH_COMPARE_END 1 49 /** */ 47 50 #define USB_HID_PATH_COMPARE_USAGE_PAGE_ONLY 4 48 51 #define USB_HID_PATH_COMPARE_COLLECTION_ONLY 2 /* porovnava jenom cestu z Kolekci */ 52 /** Searched usage page must be prefix of the other one */ 53 #define USB_HID_PATH_COMPARE_BEGIN 8 54 /** Searched couple of usage page and usage can be anywhere in usage path */ 55 #define USB_HID_PATH_COMPARE_WHERE 16 56 /** 57 * TODO 58 * * porovnani zacatek - neni to to samy jako COLLECTION ONLY?? -- TEST 59 * * porovnani kdekoliv (jenom s delkou 1 at si to moc nekomplikujem) 60 */ 49 61 50 62 -
uspace/lib/usb/include/usb/classes/hidtypes.h
r6c6a95d2 r1ce4189 165 165 /** */ 166 166 link_t link; 167 168 int in_delimiter; 167 169 } usb_hid_report_item_t; 168 170 -
uspace/lib/usb/src/hiddescriptor.c
r6c6a95d2 r1ce4189 41 41 #include <assert.h> 42 42 43 44 #define OUTSIDE_DELIMITER_SET 0 45 #define START_DELIMITER_SET 1 46 #define INSIDE_DELIMITER_SET 2 47 43 48 /** The new report item flag. Used to determine when the item is completly 44 49 * configured and should be added to the report structure … … 56 61 #define USB_HID_UNKNOWN_TAG -99 57 62 58 59 /** 60 * Initialize the report descriptor parser structure 61 * 62 * @param parser Report descriptor parser structure 63 * @return Error code 64 */ 65 int usb_hid_report_init(usb_hid_report_t *report) 66 { 67 if(report == NULL) { 68 return EINVAL; 69 } 70 71 memset(report, 0, sizeof(usb_hid_report_t)); 72 list_initialize(&report->reports); 73 list_initialize(&report->collection_paths); 74 75 report->use_report_ids = 0; 76 return EOK; 77 } 78 79 int usb_hid_report_append_fields(usb_hid_report_t *report, usb_hid_report_item_t *report_item) 80 { 81 usb_hid_report_field_t *field; 82 int i; 83 84 63 usb_hid_report_path_t *usb_hid_report_path_try_insert(usb_hid_report_t *report, usb_hid_report_path_t *cmp_path) 64 { 85 65 /* find or append current collection path to the list */ 86 66 link_t *path_it = report->collection_paths.next; … … 89 69 path = list_get_instance(path_it, usb_hid_report_path_t, link); 90 70 91 if(usb_hid_report_compare_usage_path(path, report_item->usage_path, USB_HID_PATH_COMPARE_STRICT) == EOK){71 if(usb_hid_report_compare_usage_path(path, cmp_path, USB_HID_PATH_COMPARE_STRICT) == EOK){ 92 72 break; 93 73 } … … 95 75 } 96 76 if(path_it == &report->collection_paths) { 97 path = usb_hid_report_path_clone( report_item->usage_path);77 path = usb_hid_report_path_clone(cmp_path); 98 78 list_append(&path->link, &report->collection_paths); 99 79 report->collection_paths_count++; 100 } 80 81 return path; 82 } 83 else { 84 return list_get_instance(path_it, usb_hid_report_path_t, link); 85 } 86 } 87 88 /** 89 * Initialize the report descriptor parser structure 90 * 91 * @param parser Report descriptor parser structure 92 * @return Error code 93 */ 94 int usb_hid_report_init(usb_hid_report_t *report) 95 { 96 if(report == NULL) { 97 return EINVAL; 98 } 99 100 memset(report, 0, sizeof(usb_hid_report_t)); 101 list_initialize(&report->reports); 102 list_initialize(&report->collection_paths); 103 104 report->use_report_ids = 0; 105 return EOK; 106 } 107 108 109 /* 110 * 111 * 112 */ 113 int usb_hid_report_append_fields(usb_hid_report_t *report, usb_hid_report_item_t *report_item) 114 { 115 usb_hid_report_field_t *field; 116 int i; 101 117 102 118 for(i=0; i<report_item->usages_count; i++){ … … 104 120 } 105 121 106 122 usb_hid_report_path_t *path = report_item->usage_path; 107 123 for(i=0; i<report_item->count; i++){ 108 124 … … 112 128 113 129 /* fill the attributes */ 114 field->collection_path = path;115 130 field->logical_minimum = report_item->logical_minimum; 116 131 field->logical_maximum = report_item->logical_maximum; … … 129 144 if(report_item->usages_count > 0 && ((report_item->usage_minimum == 0) && (report_item->usage_maximum == 0))) { 130 145 uint32_t usage; 131 if(report_item->type != USB_HID_REPORT_TYPE_OUTPUT) { 132 if(i < report_item->usages_count){ 133 usage = report_item->usages[i]; 134 } 135 else { 136 usage = report_item->usages[report_item->usages_count - 1]; 137 } 146 if(i < report_item->usages_count){ 147 usage = report_item->usages[i]; 138 148 } 139 149 else { 140 if((report_item->count - i - 1) < report_item->usages_count){ 141 usage = report_item->usages[(report_item->count - i - 1)]; 142 } 143 else { 144 usage = report_item->usages[report_item->usages_count - 1]; 145 } 150 usage = report_item->usages[report_item->usages_count - 1]; 146 151 } 147 152 … … 159 164 160 165 if((USB_HID_ITEM_FLAG_VARIABLE(report_item->item_flags) != 0) && (!((report_item->usage_minimum == 0) && (report_item->usage_maximum == 0)))) { 161 if(report_item->type == USB_HID_REPORT_TYPE_INPUT) { 162 field->usage = report_item->usage_maximum - i; 163 } 164 else { 165 field->usage = report_item->usage_minimum + i; 166 } 167 168 } 169 166 field->usage = report_item->usage_minimum + i; 167 } 168 169 usb_hid_report_set_last_item(path, USB_HID_TAG_CLASS_GLOBAL, field->usage_page); 170 usb_hid_report_set_last_item(path, USB_HID_TAG_CLASS_LOCAL, field->usage); 171 172 field->collection_path = usb_hid_report_path_try_insert(report, path); 173 170 174 field->size = report_item->size; 171 field->offset = report_item->offset + (i * report_item->size); 175 176 size_t offset_byte = (report_item->offset + (i * report_item->size)) / 8; 177 size_t offset_bit = 8 - ((report_item->offset + (i * report_item->size)) % 8) - report_item->size; 178 179 field->offset = 8 * offset_byte + offset_bit; 172 180 if(report_item->id != 0) { 173 181 field->offset += 8; … … 264 272 return ENOMEM; 265 273 } 274 usb_hid_report_path_append_item(usage_path, 0, 0); 266 275 267 276 while(i<size){ … … 349 358 tmp_usage_path = list_get_instance(report_item->usage_path->link.prev, usb_hid_report_usage_path_t, link); 350 359 351 usb_hid_report_set_last_item(usage_path, tmp_usage_path->usage_page, tmp_usage_path->usage); 360 usb_hid_report_set_last_item(usage_path, USB_HID_TAG_CLASS_GLOBAL, tmp_usage_path->usage_page); 361 usb_hid_report_set_last_item(usage_path, USB_HID_TAG_CLASS_LOCAL, tmp_usage_path->usage); 352 362 353 363 usb_hid_report_path_free(report_item->usage_path); … … 438 448 439 449 case USB_HID_REPORT_TAG_COLLECTION: 440 // TODO usage_path->flags = *data; 441 usb_hid_report_path_append_item(usage_path, report_item->usage_page, report_item->usages[report_item->usages_count-1]); 450 //TODO: usage_path->flags = *data; 451 452 usb_log_debug("APPENDED ITEM TO USAGE PATH (PAGE %d, USAGE %d\n", report_item->usage_page, report_item->usages[report_item->usages_count-1]); 453 usb_hid_print_usage_path(usage_path); 454 455 // set last item 456 usb_hid_report_set_last_item(usage_path, USB_HID_TAG_CLASS_GLOBAL, report_item->usage_page); 457 usb_hid_report_set_last_item(usage_path, USB_HID_TAG_CLASS_LOCAL, report_item->usages[report_item->usages_count-1]); 458 // append the new one which will be set by common 459 // usage/usage page 460 usb_hid_report_path_append_item(usage_path, report_item->usage_page, report_item->usages[report_item->usages_count-1]); 461 usb_hid_print_usage_path(usage_path); 462 442 463 usb_hid_report_reset_local_items (report_item); 443 464 return USB_HID_NO_ACTION; … … 575 596 break; 576 597 case USB_HID_REPORT_TAG_DELIMITER: 577 //report_item->delimiter = usb_hid_report_tag_data_uint32(data,item_size); 578 //TODO: 579 // DELIMITER STUFF 598 if (report_item->in_delimiter == OUTSIDE_DELIMITER_SET) { 599 report_item->in_delimiter = START_DELIMITER_SET; 600 } 601 else { 602 report_item->in_delimiter = OUTSIDE_DELIMITER_SET; 603 } 604 580 605 break; 581 606 … … 629 654 630 655 usb_log_debug("\t\tOFFSET: %X\n", report_item->offset); 631 usb_log_debug("\t\tSIZE: % zu\n", report_item->size);656 usb_log_debug("\t\tSIZE: %X\n", report_item->size); 632 657 usb_log_debug("\t\tLOGMIN: %d\n", report_item->logical_minimum); 633 658 usb_log_debug("\t\tLOGMAX: %d\n", report_item->logical_maximum); … … 640 665 usb_log_debug("\t\ttUSAGE: %X\n", report_item->usage); 641 666 usb_log_debug("\t\tUSAGE PAGE: %X\n", report_item->usage_page); 642 643 // usb_log_debug("\n"); 667 668 //usb_hid_print_usage_path(report_item->collection_path); 669 670 usb_log_debug("\n"); 644 671 645 672 } … … 666 693 usb_log_debug("Report ID: %d\n", report_des->report_id); 667 694 usb_log_debug("\tType: %d\n", report_des->type); 668 usb_log_debug("\tLength: % zu\n", report_des->bit_length);669 usb_log_debug("\tItems: % zu\n", report_des->item_length);695 usb_log_debug("\tLength: %d\n", report_des->bit_length); 696 usb_log_debug("\tItems: %d\n", report_des->item_length); 670 697 671 698 usb_hid_descriptor_print_list(&report_des->report_items); -
uspace/lib/usb/src/hidparser.c
r6c6a95d2 r1ce4189 405 405 } 406 406 407 size_t shift = offset%8;407 size_t shift = 8 - offset%8 - length; 408 408 409 409 value = value << shift;
Note:
See TracChangeset
for help on using the changeset viewer.