From: travisutk Date: Mon, 29 Aug 2011 00:55:42 +0000 (+0000) Subject: Removed unnecessary dependencies on py-serial for better use with the py-bluez devices. X-Git-Url: http://git.rot13.org/?p=goodfet;a=commitdiff_plain;h=37e18da03e554d588a08b3f654ac611cb7debada Removed unnecessary dependencies on py-serial for better use with the py-bluez devices. git-svn-id: https://svn.code.sf.net/p/goodfet/code/trunk@1039 12e2690d-a6be-4b82-a7b7-67c4a43b65c8 --- diff --git a/client/GoodFETAVR.py b/client/GoodFETAVR.py index dc143cc..4749d06 100644 --- a/client/GoodFETAVR.py +++ b/client/GoodFETAVR.py @@ -5,7 +5,7 @@ # # This code is being rewritten and refactored. You've been warned! -import sys, time, string, cStringIO, struct, glob, serial, os; +import sys, time, string, cStringIO, struct, glob, os; from GoodFET import GoodFET; diff --git a/client/GoodFETCCSPI.py b/client/GoodFETCCSPI.py index 1c14f85..c056cf3 100644 --- a/client/GoodFETCCSPI.py +++ b/client/GoodFETCCSPI.py @@ -5,7 +5,7 @@ # # This code is being rewritten and refactored. You've been warned! -import sys, time, string, cStringIO, struct, glob, serial, os; +import sys, time, string, cStringIO, struct, glob, os; from GoodFET import GoodFET; diff --git a/client/GoodFETEM260.py b/client/GoodFETEM260.py index 6856506..ef2bf0c 100644 --- a/client/GoodFETEM260.py +++ b/client/GoodFETEM260.py @@ -16,7 +16,7 @@ # The delay is mandatory. -import sys, time, string, cStringIO, struct, glob, serial, os; +import sys, time, string, cStringIO, struct, glob, os; from GoodFETSPI import GoodFETSPI; diff --git a/client/GoodFETGlitch.py b/client/GoodFETGlitch.py index e596d4e..383609b 100644 --- a/client/GoodFETGlitch.py +++ b/client/GoodFETGlitch.py @@ -5,7 +5,7 @@ # # This code is being rewritten and refactored. You've been warned! -import sys, time, string, cStringIO, struct, glob, serial, os, random; +import sys, time, string, cStringIO, struct, glob, os, random; import sqlite3; from GoodFET import *; diff --git a/client/GoodFETMSP430.py b/client/GoodFETMSP430.py index fc8e99b..6d1184c 100644 --- a/client/GoodFETMSP430.py +++ b/client/GoodFETMSP430.py @@ -5,7 +5,7 @@ # # Presently being rewritten. -import sys, time, string, cStringIO, struct, glob, serial, os; +import sys, time, string, cStringIO, struct, glob, os; from GoodFET import GoodFET; diff --git a/client/GoodFETNRF.py b/client/GoodFETNRF.py index 85a687b..093fc4b 100644 --- a/client/GoodFETNRF.py +++ b/client/GoodFETNRF.py @@ -5,7 +5,7 @@ # # This code is being rewritten and refactored. You've been warned! -import sys, time, string, cStringIO, struct, glob, serial, os; +import sys, time, string, cStringIO, struct, glob, os; from GoodFET import GoodFET; diff --git a/client/GoodFETSPI.py b/client/GoodFETSPI.py index 7f48a5a..c303b21 100644 --- a/client/GoodFETSPI.py +++ b/client/GoodFETSPI.py @@ -5,7 +5,7 @@ # # This code is being rewritten and refactored. You've been warned! -import sys, time, string, cStringIO, struct, glob, serial, os; +import sys, time, string, cStringIO, struct, glob, os; from GoodFET import GoodFET; diff --git a/client/GoodFETSmartCard.py b/client/GoodFETSmartCard.py index 135ad0d..eeb804a 100755 --- a/client/GoodFETSmartCard.py +++ b/client/GoodFETSmartCard.py @@ -5,7 +5,7 @@ # # This code is being rewritten and refactored. You've been warned! -import sys, time, string, cStringIO, struct, glob, serial, os; +import sys, time, string, cStringIO, struct, glob, os; from GoodFET import GoodFET;