diff --git a/templates/gapuino/test b/templates/gapuino/test index 31da3fc..1a4b3d9 100755 --- a/templates/gapuino/test +++ b/templates/gapuino/test @@ -24,7 +24,6 @@ def get_serial(): import serial.tools.list_ports ports = serial.tools.list_ports.comports() devices = [ p.device for p in ports ] - devices.sort() return devices @@ -136,7 +135,7 @@ def main(argv): ser.setRTS(False) time.sleep(0.1) ser.setRTS(True) - time.sleep(1) + time.sleep(1.5) exp_hello = b"Hello, World!" hello = ser.read(len(exp_hello))