Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion meshtastic/stream_interface.py
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,8 @@ def _writeBytes(self, b):
self.stream.write(b)
self.stream.flush()
# we sleep here to give the TBeam a chance to work
time.sleep(0.1)
# also win11 might need a bit more time, too
time.sleep(1.0)

def _readBytes(self, length):
"""Read an array of bytes from our stream"""
Expand Down