Standardizing Chipcon interface, bringing it into line with the NRF code.
[goodfet] / client / GoodFETNRF.py
index 6afd934..3c780a5 100644 (file)
@@ -91,7 +91,7 @@ class GoodFETNRF(GoodFET):
         elif rate==250*10**3:
             r6=r6|0x20;
         print "Setting r6=%02x." % r6;
-        self.poke(0x06,r6); #Write new setting.
+        self.poke(0x06,r6); #Write new rate.
     def RF_setfreq(self,frequency):
         """Set the frequency in Hz."""
         
@@ -100,6 +100,8 @@ class GoodFETNRF(GoodFET):
         
         chan=frequency/1000000-2400;
         self.poke(0x05,chan);
+
+
     def RF_getfreq(self):
         """Get the frequency in Hz."""
         
@@ -162,7 +164,7 @@ class GoodFETNRF(GoodFET):
         """Hold a carrier wave on the present frequency."""
         # Set CONT_WAVE, PLL_LOCK, and 0dBm in RF_SETUP            
         self.poke(0x06,8+10+4+2); 
-        
+    
     packetlen=16;
     def RF_setpacketlen(self,len=16):
         """Set the number of bytes in the expected payload."""