From: travisutk Date: Mon, 2 Nov 2009 05:52:15 +0000 (+0000) Subject: Explicit setRTS. X-Git-Url: http://git.rot13.org/?p=goodfet;a=commitdiff_plain;h=6a7bdc64b4ea34ebfe6b6a61360ad3274bb9ac15 Explicit setRTS. This might fix a bug that Mike Kershaw has observed in some versions of the Linux kernel. git-svn-id: https://svn.code.sf.net/p/goodfet/code/trunk@220 12e2690d-a6be-4b82-a7b7-67c4a43b65c8 --- diff --git a/client/GoodFET.py b/client/GoodFET.py index 9fcbbab..cd9499e 100755 --- a/client/GoodFET.py +++ b/client/GoodFET.py @@ -36,6 +36,9 @@ class GoodFET: 115200, parity = serial.PARITY_NONE ) + + #Explicitly set RTS + self.serialport.setRTS(1); #Drop DTR, which is !RST, low to begin the app. self.serialport.setDTR(0); self.serialport.flushInput()