summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDevaev Maxim <[email protected]>2021-05-25 01:41:53 +0300
committerDevaev Maxim <[email protected]>2021-05-25 01:41:53 +0300
commit787e5ddbaed9a79a253a06ac0f0bcb2b619c1126 (patch)
tree412d64c95a37276931d19a9d7c807b0569768ee5
parent8bc36eac5d0ccc916df7e45e5c29362c09079b02 (diff)
reduced spi freq to 100k
-rw-r--r--kvmd/plugins/hid/spi.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/kvmd/plugins/hid/spi.py b/kvmd/plugins/hid/spi.py
index 057a67ea..6cb089fa 100644
--- a/kvmd/plugins/hid/spi.py
+++ b/kvmd/plugins/hid/spi.py
@@ -174,7 +174,7 @@ class Plugin(BaseMcuHid):
"chip": Option(-1, type=valid_int_f0),
"hw_cs": Option(False, type=valid_bool),
"sw_cs_pin": Option(-1, type=valid_gpio_pin_optional),
- "max_freq": Option(200000, type=valid_int_f1),
+ "max_freq": Option(100000, type=valid_int_f1),
"block_usec": Option(1, type=valid_int_f0),
"read_timeout": Option(0.5, type=valid_float_f01),
}