From 1296a1ce28b4954e2309a1505e4d8769592c03ec Mon Sep 17 00:00:00 2001 From: Ben Meadors Date: Wed, 15 Jun 2022 10:58:55 -0500 Subject: [PATCH] Changed baud to 115200 --- meshtastic/serial_interface.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meshtastic/serial_interface.py b/meshtastic/serial_interface.py index 3ecc560..282acfa 100644 --- a/meshtastic/serial_interface.py +++ b/meshtastic/serial_interface.py @@ -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)