diff options
Diffstat (limited to 'kvmd/apps/otg/hid')
-rw-r--r-- | kvmd/apps/otg/hid/keyboard.py | 4 | ||||
-rw-r--r-- | kvmd/apps/otg/hid/mouse.py | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/kvmd/apps/otg/hid/keyboard.py b/kvmd/apps/otg/hid/keyboard.py index 274406fd..29b62e07 100644 --- a/kvmd/apps/otg/hid/keyboard.py +++ b/kvmd/apps/otg/hid/keyboard.py @@ -25,8 +25,8 @@ from . import Hid # ===== KEYBOARD_HID = Hid( - protocol=1, - subclass=1, + protocol=1, # Keyboard protocol + subclass=1, # Boot interface subclass report_length=8, diff --git a/kvmd/apps/otg/hid/mouse.py b/kvmd/apps/otg/hid/mouse.py index bed1ffb2..57e75e43 100644 --- a/kvmd/apps/otg/hid/mouse.py +++ b/kvmd/apps/otg/hid/mouse.py @@ -25,8 +25,8 @@ from . import Hid # ===== MOUSE_HID = Hid( - protocol=0, - subclass=0, + protocol=0, # None protocol + subclass=0, # No subclass report_length=7, |