Merge pull request #336 from meshtastic/change-default-baud

Changed baud to 115200
This commit is contained in:
Ben Meadors
2022-06-15 11:46:31 -05:00
committed by GitHub

View File

@@ -50,7 +50,7 @@ class SerialInterface(StreamInterface):
f.close()
time.sleep(0.1)
self.stream = serial.Serial(self.devPath, 921600, exclusive=True, timeout=0.5, write_timeout=0)
self.stream = serial.Serial(self.devPath, 115200, exclusive=True, timeout=0.5, write_timeout=0)
self.stream.flush()
time.sleep(0.1)