diff options
author | Maxim Devaev <[email protected]> | 2025-01-05 02:02:21 +0200 |
---|---|---|
committer | Maxim Devaev <[email protected]> | 2025-01-05 02:02:21 +0200 |
commit | e120b50f50504e050d4c1ae904d9676142e4cf11 (patch) | |
tree | 20535bed67f7eeebf518e7538f110b9b3b7904fd | |
parent | f1256ee74aa2a375b5978d870a869bafefd3aec8 (diff) |
usb: max endpoints is 10, not 8
-rw-r--r-- | kvmd/apps/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kvmd/apps/__init__.py b/kvmd/apps/__init__.py index 848b8b6e..6ae5571b 100644 --- a/kvmd/apps/__init__.py +++ b/kvmd/apps/__init__.py @@ -568,7 +568,7 @@ def _get_config_scheme() -> dict: "gadget": Option("kvmd", type=valid_otg_gadget), "config": Option("PiKVM device", type=valid_stripped_string_not_empty), "udc": Option("", type=valid_stripped_string), - "endpoints": Option(8, type=valid_int_f0), + "endpoints": Option(10, type=valid_int_f0), "init_delay": Option(3.0, type=valid_float_f01), "user": Option("kvmd", type=valid_user), |