Skip to content

Commit 3d5cf9b

Browse files
Dont close the serial port
1 parent a8dfa29 commit 3d5cf9b

2 files changed

Lines changed: 303 additions & 222 deletions

File tree

Hologram/Network/Modem/EC25.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,9 @@
1717
class EC25(Quectel):
1818
usb_ids = [("2c7c", "0125")]
1919

20+
def __init__(self, baud_rate="115200", **kwargs):
21+
super().__init__(baud_rate=baud_rate, **kwargs)
22+
2023
def connect(self, timeout=DEFAULT_EC25_TIMEOUT):
2124
success = super().connect(timeout)
2225
return success

0 commit comments

Comments
 (0)