From 803a81c7aa96d7ca0333c7dfa5e662036758dfd1 Mon Sep 17 00:00:00 2001 From: travisutk Date: Thu, 23 Sep 2010 19:58:52 +0000 Subject: [PATCH] Timeout is now a warning, rather than an error. The app won't exit on a timeout. git-svn-id: https://svn.code.sf.net/p/goodfet/code/trunk@731 12e2690d-a6be-4b82-a7b7-67c4a43b65c8 --- client/GoodFET.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/client/GoodFET.py b/client/GoodFET.py index 45bd33a..0a3bf1a 100755 --- a/client/GoodFET.py +++ b/client/GoodFET.py @@ -287,9 +287,9 @@ class GoodFET: return self.data; except TypeError: if self.connected: - print "Error: waiting for serial read timed out (most likely)."; - print "This shouldn't happen after syncing. Exiting for safety."; - sys.exit(-1) + print "Warning: waiting for serial read timed out (most likely)."; + #print "This shouldn't happen after syncing. Exiting for safety."; + #sys.exit(-1) return self.data; #Glitching stuff. def glitchApp(self,app): -- 2.20.1