From: travisutk Date: Tue, 22 Feb 2011 20:49:11 +0000 (+0000) Subject: Removed unnecessary register prints in RF_promiscuity of CCSPI. X-Git-Url: http://git.rot13.org/?p=goodfet;a=commitdiff_plain;h=08ef91ba10763b0ddbe4cb242f426294b0504f98;hp=3ad2fc30be8b200ada0ff1e2624e460e9898f5ae Removed unnecessary register prints in RF_promiscuity of CCSPI. git-svn-id: https://svn.code.sf.net/p/goodfet/code/trunk@936 12e2690d-a6be-4b82-a7b7-67c4a43b65c8 --- diff --git a/client/GoodFETCCSPI.py b/client/GoodFETCCSPI.py index 411fcaa..8172422 100644 --- a/client/GoodFETCCSPI.py +++ b/client/GoodFETCCSPI.py @@ -194,9 +194,9 @@ class GoodFETCCSPI(GoodFET): print "Don't know how to hold a carrier."; def RF_promiscuity(self,promiscuous=1): mdmctrl0=self.peek(0x11); - print "mdmctrl0 was %04x" % mdmctrl0; + #print "mdmctrl0 was %04x" % mdmctrl0; mdmctrl0=mdmctrl0&(~0x800); - print "mdmctrl0 is now %04x" % mdmctrl0; + #print "mdmctrl0 is now %04x" % mdmctrl0; self.poke(0x11,mdmctrl0); return;