CCSPI stuff.
[goodfet] / client / GoodFETCCSPI.py
index 5ea56be..e205811 100644 (file)
@@ -133,7 +133,7 @@ class GoodFETCCSPI(GoodFET):
         mhz=2048+(fsctrl&0x3ff)
         return mhz*1000000;
     def RF_setchan(self,channel):
         mhz=2048+(fsctrl&0x3ff)
         return mhz*1000000;
     def RF_setchan(self,channel):
-        if channel < 11 and channel > 26:
+        if channel < 11 or channel > 26:
             print "Only 802.15.4 channels 11 to 26 are currently supported.";
         else:
             self.RF_setfreq( ( (channel-11)*5 + 2405 ) * 1000000 );
             print "Only 802.15.4 channels 11 to 26 are currently supported.";
         else:
             self.RF_setfreq( ( (channel-11)*5 + 2405 ) * 1000000 );