From decc887cb532064209e927cf5254602de7736a4d Mon Sep 17 00:00:00 2001 From: Jm Casler Date: Sat, 21 May 2022 17:10:27 -0700 Subject: [PATCH 1/2] updating proto submodule to latest --- proto | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/proto b/proto index 79d2408..ebc270f 160000 --- a/proto +++ b/proto @@ -1 +1 @@ -Subproject commit 79d24080ff83b0a54bc1619f07f41f17ffedfb99 +Subproject commit ebc270f10558cc4537d1b60f2f03d759167f4d08 From 1296a1ce28b4954e2309a1505e4d8769592c03ec Mon Sep 17 00:00:00 2001 From: Ben Meadors Date: Wed, 15 Jun 2022 10:58:55 -0500 Subject: [PATCH 2/2] 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)