diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2020-03-23 17:26:48 -0400 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2020-03-24 10:00:45 -0400 |
commit | 295fb7fc85781f4aee1852fc54bbf4471acedb00 (patch) | |
tree | bd605a4dbaf8e80e0fd599dd091a715b4faf5d64 /klippy/serialhdl.py | |
parent | 48237435b2a38746ef668953d10725fd92b414bd (diff) | |
download | kutter-295fb7fc85781f4aee1852fc54bbf4471acedb00.tar.gz kutter-295fb7fc85781f4aee1852fc54bbf4471acedb00.tar.xz kutter-295fb7fc85781f4aee1852fc54bbf4471acedb00.zip |
serialhdl: Reduce connection fail timeout from 2.5 minutes to 1.5 minutes
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'klippy/serialhdl.py')
-rw-r--r-- | klippy/serialhdl.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/klippy/serialhdl.py b/klippy/serialhdl.py index 98bef943..bc8a9d3c 100644 --- a/klippy/serialhdl.py +++ b/klippy/serialhdl.py @@ -80,7 +80,7 @@ class SerialReader: start_time = self.reactor.monotonic() while 1: connect_time = self.reactor.monotonic() - if connect_time > start_time + 150.: + if connect_time > start_time + 90.: raise error("Unable to connect") try: if self.baud: |