Skip to content
Snippets Groups Projects
Commit 2fa4ad38 authored by Antonio Galea's avatar Antonio Galea
Browse files

reconnecting a USB-serial dongle under Linux might give permission errors...

reconnecting a USB-serial dongle under Linux might give permission errors until udev scripts complete
parent 3999d08f
No related branches found
No related tags found
No related merge requests found
......@@ -601,7 +601,11 @@ class SerCmd(cmd.Cmd):
if os.path.exists(self.port):
self.logger.warn("Try to reconnect to %s again..."
% (self.port))
self.serial_connect()
try:
self.serial_connect()
self.logger.info("Reconnected to serial port %s" % self.port)
except serial.SerialException as se:
pass
continue
if c == '\r':
if (self.newline == "LFCR" and nlreceived) or (self.newline == "CR"):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment