diff options
author | Maxim Devaev <[email protected]> | 2022-03-27 23:54:21 +0300 |
---|---|---|
committer | Maxim Devaev <[email protected]> | 2022-03-27 23:54:26 +0300 |
commit | 8e2688d82007698bafee0aed77db679029df9cb8 (patch) | |
tree | 31fa1dfdc18f4dae39abe6b2ae93517df8183c7b /kvmd/plugins/hid/serial.py | |
parent | f474fd6453698c4dd96164db0993e0013a6dd0d8 (diff) |
default values for the serial hid plugin
Diffstat (limited to 'kvmd/plugins/hid/serial.py')
-rw-r--r-- | kvmd/plugins/hid/serial.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kvmd/plugins/hid/serial.py b/kvmd/plugins/hid/serial.py index 1058f191..044a8d9e 100644 --- a/kvmd/plugins/hid/serial.py +++ b/kvmd/plugins/hid/serial.py @@ -101,7 +101,7 @@ class Plugin(BaseMcuHid): @classmethod def __get_phy_options(cls) -> Dict: return { - "device": Option("", type=valid_abs_path, unpack_as="device_path"), + "device": Option("/dev/kvmd-hid", type=valid_abs_path, unpack_as="device_path"), "speed": Option(115200, type=valid_tty_speed), "read_timeout": Option(2.0, type=valid_float_f01), } |