|
@@ -6,7 +6,7 @@
|
|
|
When opr_type is set to 0x02, the sub-handler will process the
|
|
|
request here.
|
|
|
|
|
|
- -- Mouse Opcode --
|
|
|
+ -- Mouse Write (opr_type = 0x02) --
|
|
|
0x00 = Reserved
|
|
|
0x01 = Mouse Click
|
|
|
0x02 = Mouse Press
|
|
@@ -20,6 +20,27 @@
|
|
|
0x02 = [max, 0] (top right)
|
|
|
0x03 = [max, max] (bottom right)
|
|
|
0x05 = Release All Mouse Buttons
|
|
|
+
|
|
|
+-- Mouse Move (opr_type = 0x03) --
|
|
|
+ This operation is a special case that
|
|
|
+ takes an additional 4 payloads
|
|
|
+ byte[0] opr_type (0x03)
|
|
|
+ byte[1] val_x (max 0x7E)
|
|
|
+ byte[2] val_y (max 0x7E)
|
|
|
+ byte[3] signed_x (0x00 = positive, 0x01 = negative)
|
|
|
+ byte[4] signed_y (0x00 = positive, 0x01 = negative)
|
|
|
+
|
|
|
+-- Mouse Scroll (opr_type = 0x04) --
|
|
|
+ This operation is another special case
|
|
|
+ that use opr_subtype field as direction and
|
|
|
+ opr_payload as tilt value
|
|
|
+ Note: the value is directly written to the USB_HID report
|
|
|
+ the resp is dependent to the OS
|
|
|
+
|
|
|
+ opr_subtype
|
|
|
+ 0x00 = positive
|
|
|
+ 0x01 = negative
|
|
|
+ opr_value = tilt (max 0x7E)
|
|
|
*/
|
|
|
|
|
|
#include "usbkvm_fw.h"
|
|
@@ -86,6 +107,7 @@ uint8_t mouse_wheel(uint8_t direction, uint8_t utilt) {
|
|
|
uint8_t mouse_emulation(uint8_t subtype, uint8_t value) {
|
|
|
switch (subtype) {
|
|
|
case SUBTYPE_MOUSE_CLICK:
|
|
|
+ Mouse_move(0,0);
|
|
|
if (value == PAYLOAD_MOUSE_BTN_LEFT) {
|
|
|
Mouse_click(MOUSE_LEFT);
|
|
|
} else if (value == PAYLOAD_MOUSE_BTN_RIGHT) {
|
|
@@ -97,6 +119,7 @@ uint8_t mouse_emulation(uint8_t subtype, uint8_t value) {
|
|
|
}
|
|
|
return resp_ok;
|
|
|
case SUBTYPE_MOUSE_PRESS:
|
|
|
+ Mouse_move(0,0);
|
|
|
if (value == PAYLOAD_MOUSE_BTN_LEFT) {
|
|
|
Mouse_press(MOUSE_LEFT);
|
|
|
} else if (value == PAYLOAD_MOUSE_BTN_RIGHT) {
|
|
@@ -133,6 +156,7 @@ uint8_t mouse_emulation(uint8_t subtype, uint8_t value) {
|
|
|
} else {
|
|
|
return resp_invalid_key_value;
|
|
|
}
|
|
|
+ Mouse_move(0,0);
|
|
|
return resp_ok;
|
|
|
case SUBTYPE_MOUSE_RESET:
|
|
|
Mouse_release(MOUSE_LEFT);
|