From e120b50f50504e050d4c1ae904d9676142e4cf11 Mon Sep 17 00:00:00 2001 From: Maxim Devaev Date: Sun, 5 Jan 2025 02:02:21 +0200 Subject: [PATCH] usb: max endpoints is 10, not 8 --- kvmd/apps/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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),