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

Changed baud to 115200
This commit is contained in:
Ben Meadors authored and GitHub committed 2022-06-15 11:46:31 -05:00
commit 075ad01e46
1 file changed
+1 -1
+1 -1
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)