Removed unnecessary register prints in RF_promiscuity of CCSPI.
[goodfet] / client / GoodFETCCSPI.py
index 411fcaa..8172422 100644 (file)
@@ -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;