enabled remote wakeup by default

This commit is contained in:
Maxim Devaev
2024-12-27 03:01:18 +02:00
parent e491057891
commit 253231adac
3 changed files with 1 additions and 9 deletions

View File

@@ -563,7 +563,7 @@ def _get_config_scheme() -> dict:
"device_version": Option(-1, type=functools.partial(valid_number, min=-1, max=0xFFFF)),
"usb_version": Option(0x0200, type=valid_otg_id),
"max_power": Option(250, type=functools.partial(valid_number, min=50, max=500)),
"remote_wakeup": Option(False, type=valid_bool),
"remote_wakeup": Option(True, type=valid_bool),
"gadget": Option("kvmd", type=valid_otg_gadget),
"config": Option("PiKVM device", type=valid_stripped_string_not_empty),