|
@@ -13,18 +13,13 @@
|
|
|
0x03 = keyboard release
|
|
|
(ASCII bytes in range of 32 to 127)
|
|
|
|
|
|
- 0x04 = Modifier key combination set (bit flags in payload)
|
|
|
- Bit 0 (0x01) = KEY_LEFT_CTRL
|
|
|
- Bit 1 (0x02) = KEY_LEFT_SHIFT
|
|
|
- Bit 2 (0x04) = KEY_LEFT_ALT
|
|
|
- Bit 3 (0x08) = KEY_LEFT_GUI
|
|
|
- Bit 4 (0x10) = KEY_RIGHT_CTRL
|
|
|
- Bit 5 (0x20) = KEY_RIGHT_SHIFT
|
|
|
- Bit 6 (0x40) = KEY_RIGHT_ALT
|
|
|
- Bit 7 (0x80) = KEY_RIGHT_GUI
|
|
|
- 0x05 = Modifier key combination reset
|
|
|
-
|
|
|
- 0x07 = Function key combinartion write
|
|
|
+ 0x04 = Modifier key combination press
|
|
|
+ 0x05 = Modifier key combination release
|
|
|
+ See usbkvm_fw.h Modifier Keys IDs defination
|
|
|
+
|
|
|
+ 0x06 = Function key press
|
|
|
+ 0x07 = Function key release
|
|
|
+ (IDs follows USB_HID numbers)
|
|
|
0xC2 = KEY_F1
|
|
|
0xC3 = KEY_F2
|
|
|
0xC4 = KEY_F3
|
|
@@ -37,6 +32,7 @@
|
|
|
|
|
|
0x08 = Other keys press
|
|
|
0x09 = Other keys release
|
|
|
+ (IDs follows USB_HID numbers)
|
|
|
0xDA = KEY_UP_ARROW
|
|
|
0xD9 = KEY_DOWN_ARROW
|
|
|
0xD8 = KEY_LEFT_ARROW
|
|
@@ -53,6 +49,10 @@
|
|
|
0xD5 = KEY_END
|
|
|
0xC1 = KEY_CAPS_LOCK
|
|
|
|
|
|
+ 0x0A = Numpad key press
|
|
|
+ 0x0B = Numpad key release
|
|
|
+ See usbkvm_fw.h Numpad Buttons IDs defination
|
|
|
+
|
|
|
-- Special Opcode --
|
|
|
0xFE = Ctrl + Alt + Delete
|
|
|
0xFF = Reset all keys state
|
|
@@ -275,6 +275,9 @@ uint8_t keyboard_emulation(uint8_t subtype, uint8_t value) {
|
|
|
//Check if the input is a supported ascii value
|
|
|
|
|
|
switch (subtype) {
|
|
|
+ /*
|
|
|
+ Alphanumerical Key-events
|
|
|
+ */
|
|
|
case SUBTYPE_KEYBOARD_ASCII_WRITE:
|
|
|
if (!is_ascii(value))
|
|
|
return resp_invalid_key_value;
|
|
@@ -290,12 +293,18 @@ uint8_t keyboard_emulation(uint8_t subtype, uint8_t value) {
|
|
|
return resp_invalid_key_value;
|
|
|
Keyboard_release(value);
|
|
|
return resp_ok;
|
|
|
+ /*
|
|
|
+ Modifier Key-events
|
|
|
+ */
|
|
|
case SUBTYPE_KEYBOARD_MODIFIER_PRESS:
|
|
|
keyboard_modifying_key_set(true, value);
|
|
|
return resp_ok;
|
|
|
case SUBTYPE_KEYBOARD_MODIFIER_RELEASE:
|
|
|
keyboard_modifying_key_set(false, value);
|
|
|
return resp_ok;
|
|
|
+ /*
|
|
|
+ Function Key-events (F1 to F24)
|
|
|
+ */
|
|
|
case SUBTYPE_KEYBOARD_FUNCTKEY_PRESS:
|
|
|
if (!is_funckey(value))
|
|
|
return resp_invalid_key_value;
|
|
@@ -306,6 +315,9 @@ uint8_t keyboard_emulation(uint8_t subtype, uint8_t value) {
|
|
|
return resp_invalid_key_value;
|
|
|
Keyboard_release(value);
|
|
|
return resp_ok;
|
|
|
+ /*
|
|
|
+ Other Key-events
|
|
|
+ */
|
|
|
case SUBTYPE_KEYBOARD_OTHERKEY_PRESS:
|
|
|
if (!is_validkeys(value))
|
|
|
return resp_invalid_key_value;
|
|
@@ -316,6 +328,9 @@ uint8_t keyboard_emulation(uint8_t subtype, uint8_t value) {
|
|
|
return resp_invalid_key_value;
|
|
|
Keyboard_release(value);
|
|
|
return resp_ok;
|
|
|
+ /*
|
|
|
+ Numpad Key-events
|
|
|
+ */
|
|
|
case SUBTYPE_KEYBOARD_NUMPAD_PRESS:
|
|
|
if (value > PAYLOAD_NUMPAD_NUMLOCK)
|
|
|
return resp_invalid_key_value;
|
|
@@ -326,6 +341,32 @@ uint8_t keyboard_emulation(uint8_t subtype, uint8_t value) {
|
|
|
return resp_invalid_key_value;
|
|
|
numpad_key_set(false, value);
|
|
|
return resp_ok;
|
|
|
+ /*
|
|
|
+ Hardware Offload Key-events
|
|
|
+
|
|
|
+ These key-events are offloaded to hardware (the MCU)
|
|
|
+ for handling the press and release events
|
|
|
+ */
|
|
|
+ case SUBTYPE_KEYBOARD_SPECIAL_PAUSE:
|
|
|
+ Keyboard_press('\320');
|
|
|
+ delay(100);
|
|
|
+ Keyboard_release('\320');
|
|
|
+ return resp_ok;
|
|
|
+ case SUBTYPE_KEYBOARD_SPECIAL_PRINT_SCREEN:
|
|
|
+ Keyboard_press('\316');
|
|
|
+ delay(100);
|
|
|
+ Keyboard_release('\316');
|
|
|
+ return resp_ok;
|
|
|
+ case SUBTYPE_KEYBOARD_SPECIAL_SCROLL_LOCK:
|
|
|
+ Keyboard_press('\317');
|
|
|
+ delay(100);
|
|
|
+ Keyboard_release('\317');
|
|
|
+ return resp_ok;
|
|
|
+ case SUBTYPE_KEYBOARD_SPECIAL_NUMLOCK:
|
|
|
+ Keyboard_press('\333');
|
|
|
+ delay(100);
|
|
|
+ Keyboard_release('\333');
|
|
|
+ return resp_ok;
|
|
|
case SUBTYPE_KEYBOARD_SPECIAL_CTRLALTDEL:
|
|
|
// Press Ctrl + Alt + Del
|
|
|
Keyboard_press(KEY_LEFT_CTRL);
|