Changes in uspace/drv/usbkbd/main.c [71ed4849:38c5dfa] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/usbkbd/main.c
r71ed4849 r38c5dfa 78 78 } 79 79 80 #if 0 80 81 static void send_key(int key, int type, wchar_t c) { 81 82 async_msg_4(console_callback_phone, KBD_EVENT, type, key, 82 83 KM_NUM_LOCK, c); 83 84 } 84 85 static void send_alnum(int key, wchar_t c) { 86 printf(NAME ": sending key '%lc' to console\n", (wint_t) c); 87 send_key(key, KEY_PRESS, c); 88 send_key(key, KEY_RELEASE, c); 89 } 85 #endif 90 86 91 87 /* … … 231 227 sizeof(usb_hid_report_in_callbacks_t)); 232 228 callbacks->keyboard = usbkbd_process_keycodes; 233 234 if (console_callback_phone != -1) {235 static size_t counter = 0;236 counter++;237 if (counter > 3) {238 counter = 0;239 send_alnum(KC_A, L'a');240 }241 }242 229 243 230 usb_hid_parse_report(kbd_dev->parser, buffer, actual_size, callbacks,
Note:
See TracChangeset
for help on using the changeset viewer.