From 6a7bdc64b4ea34ebfe6b6a61360ad3274bb9ac15 Mon Sep 17 00:00:00 2001 From: travisutk Date: Mon, 2 Nov 2009 05:52:15 +0000 Subject: [PATCH 1/1] 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 --- client/GoodFET.py | 3 +++ 1 file changed, 3 insertions(+) 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() -- 2.20.1