# HG changeset patch
# User Daniel O'Connor <doconnor@gsoft.com.au>
# Date 1610076849 -37800
# Node ID dd27521002a5e0f35c5a8708e39f0088308f9ee3
# Parent  0684a20cc5c34cf38f514bb80d83c8dae3e83fcb
Change default timeout to 500msec

diff -r 0684a20cc5c3 -r dd27521002a5 usb488.py
--- a/usb488.py	Fri Jan 08 14:03:52 2021 +1030
+++ b/usb488.py	Fri Jan 08 14:04:09 2021 +1030
@@ -237,8 +237,8 @@
         """Read data from the device, waits for up to timeout seconds for each USB transaction"""
 
         if timeout == None:
-            timeout = 0.1
-            
+            timeout = 0.5
+
         # Mangle into milliseconds
         _timeout = int(timeout * 1000.0)