usbkvm_fw.h 3.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. /*
  2. usbkvm_fw.h
  3. Author: tobychui
  4. */
  5. #ifndef _usbkvm_
  6. #define _usbkvm_
  7. /* Hardware Configurations */
  8. #define MIN_KEY_EVENTS_DELAY 20 //ms
  9. #define LED_RW_SIG 16
  10. #define USB_SW_SEL 32
  11. /* Operation Types */
  12. #define OPR_TYPE_RESERVED 0x00 // Reserved
  13. #define OPR_TYPE_KEYBOARD_WRITE 0x01 // Keyboard-related operation
  14. #define OPR_TYPE_MOUSE_WRITE 0x02 // Mouse-related operation
  15. #define OPR_TYPE_MOUSE_MOVE 0x03 // Mouse-move operation (Notes: When opr_type is OPR_TYPE_MOUSE_MOVE, opr_subtype is the X position value)
  16. #define OPR_TYPE_MOUSE_SCROLL 0x04 //Mouse scroll (Notes: when opr_type is OPR_TYPE_MOUSE_SCROLL, opr_subtype is up/down and payload is scroll tilt valie (max 127))
  17. #define OPR_TYPE_SWITCH_WRITE 0x05 // Switch/button operation
  18. #define OPR_TYPE_LED_WRITE 0x06 // LED control operation
  19. #define OPR_TYPE_RESET_INSTR_COUNT 0xFE // Reset instruction counter
  20. #define OPR_TYPE_DATA_RESET 0xFF //Reset opr data queue, if state of device is unknown, clear before use
  21. /* Operation Sub-types */
  22. #define SUBTYPE_RESERVED 0x00
  23. /* Keyboard Subtypes */
  24. #define SUBTYPE_KEYBOARD_ASCII_WRITE 0x01 // Write ASCII characters (32-127)
  25. #define SUBTYPE_KEYBOARD_ASCII_PRESS 0x02 // Press a key (ASCII 32-127)
  26. #define SUBTYPE_KEYBOARD_ASCII_RELEASE 0x03 // Release a key (ASCII 32-127)
  27. #define SUBTYPE_KEYBOARD_MODIFIER_PRESS 0x04 // Modifier key write (bit flags)
  28. #define SUBTYPE_KEYBOARD_MODIFIER_RELEASE 0x05 // Modifier key press (bit flags)
  29. #define SUBTYPE_KEYBOARD_FUNCTKEY_PRESS 0x06 //Function key press
  30. #define SUBTYPE_KEYBOARD_FUNCTKEY_RELEASE 0x07 //Function key release
  31. #define SUBTYPE_KEYBOARD_OTHERKEY_PRESS 0x08 //Other keys press
  32. #define SUBTYPE_KEYBOARD_OTHERKEY_RELEASE 0x09 //Other keys release
  33. #define SUBTYPE_KEYBOARD_NUMPAD_PRESS 0x0A //Numpad numeric press
  34. #define SUBTYPE_KEYBOARD_NUMPAD_RELEASE 0x0B //Numpad numeric release
  35. #define SUBTYPE_KEYBOARD_SPECIAL_CTRLALTDEL 0xFD //Ctrl + Alt + Del
  36. #define SUBTYPE_KEYBOARD_SPECIAL_RESET 0xFE //Reset all keypress state
  37. #define SUBTYPE_KEYBOARD_SPECIAL_RESERVED 0xFF //Reserved
  38. /* Modifier Keys IDs */
  39. #define PAYLOAD_KEY_LEFT_CTRL 0x00
  40. #define PAYLOAD_KEY_LEFT_SHIFT 0x01
  41. #define PAYLOAD_KEY_LEFT_ALT 0x02
  42. #define PAYLOAD_KEY_LEFT_GUI 0x03
  43. #define PAYLOAD_KEY_RIGHT_CTRL 0x04
  44. #define PAYLOAD_KEY_RIGHT_SHIFT 0x05
  45. #define PAYLOAD_KEY_RIGHT_ALT 0x06
  46. #define PAYLOAD_KEY_RIGHT_GUI 0x07
  47. /* Numpad Buttons IDs */
  48. #define PAYLOAD_NUMPAD_0 0x00
  49. #define PAYLOAD_NUMPAD_1 0x01
  50. #define PAYLOAD_NUMPAD_2 0x02
  51. #define PAYLOAD_NUMPAD_3 0x03
  52. #define PAYLOAD_NUMPAD_4 0x04
  53. #define PAYLOAD_NUMPAD_5 0x05
  54. #define PAYLOAD_NUMPAD_6 0x06
  55. #define PAYLOAD_NUMPAD_7 0x07
  56. #define PAYLOAD_NUMPAD_8 0x08
  57. #define PAYLOAD_NUMPAD_9 0x09
  58. #define PAYLOAD_NUMPAD_DOT 0x0A
  59. #define PAYLOAD_NUMPAD_TIMES 0x0B
  60. #define PAYLOAD_NUMPAD_DIV 0x0C
  61. #define PAYLOAD_NUMPAD_PLUS 0x0D
  62. #define PAYLOAD_NUMPAD_MINUS 0x0E
  63. #define PAYLOAD_NUMPAD_ENTER 0x0F
  64. #define PAYLOAD_NUMPAD_NUMLOCK 0x10
  65. /* Mouse Subtypes */
  66. #define SUBTYPE_MOUSE_CLICK 0x01 //Mouse button click
  67. #define SUBTYPE_MOUSE_PRESS 0x02 //Mouse button press
  68. #define SUBTYPE_MOUSE_RELEASE 0x03 //Mouse button release
  69. #define SUBTYPE_MOUSE_SETPOS 0x04 //Mouse presets position
  70. #define SUBTYPE_MOUSE_RESET 0x05 //Reset all mouse button states
  71. /* Mouse Buttons IDs */
  72. #define PAYLOAD_MOUSE_BTN_LEFT 0x01
  73. #define PAYLOAD_MOUSE_BTN_RIGHT 0x02
  74. #define PAYLOAD_MOUSE_BTN_MID 0x03
  75. /* Response Codes */
  76. #define resp_ok 0x00
  77. #define resp_unknown_opr 0x01
  78. #define resp_invalid_opr_type 0x02
  79. #define resp_invalid_key_value 0x03
  80. #define resp_not_implemented 0x04
  81. /* Debug */
  82. #define resp_start_of_info_msg 0xED
  83. #define resp_end_of_msg 0xEF
  84. #endif