Skip to content
Snippets Groups Projects
Commit 4ab729ac authored by Michael DM Dryden's avatar Michael DM Dryden
Browse files

Merge branch 'usb_reconnection' into gtk3

parents ae517c81 e9330d16
1 merge request!10Move to gtk3 and new command protocol
...@@ -34,10 +34,21 @@ def _serial_process(ser_port, proc_pipe, ctrl_pipe, data_pipe): ...@@ -34,10 +34,21 @@ def _serial_process(ser_port, proc_pipe, ctrl_pipe, data_pipe):
ser_logger = logging.getLogger("dstat.comm._serial_process") ser_logger = logging.getLogger("dstat.comm._serial_process")
ser = delayedSerial(ser_port, baudrate=1000000, timeout=1) ser = delayedSerial(ser_port, baudrate=1000000, timeout=1)
ser_logger.info("Reattaching DStat udc")
ser.write("!R") # Send restart command
ser.close()
ser_logger.info("Connecting") for i in range(5):
time.sleep(1) # Give OS time to enumerate
ser.write("ck") try:
ser = delayedSerial(ser_port, baudrate=1000000, timeout=1)
ser_logger.info("Connecting")
break
except serial.SerialException:
pass
ser.write("ck") # Keep this to support old firmwares
ser.flushInput() ser.flushInput()
ser.write('!') ser.write('!')
...@@ -47,6 +58,7 @@ def _serial_process(ser_port, proc_pipe, ctrl_pipe, data_pipe): ...@@ -47,6 +58,7 @@ def _serial_process(ser_port, proc_pipe, ctrl_pipe, data_pipe):
time.sleep(.5) time.sleep(.5)
ser.write('!') ser.write('!')
else: else:
ser.write('V')
break break
while True: while True:
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment