X-Git-Url: http://git.rot13.org/?p=goodfet;a=blobdiff_plain;f=client%2FGoodFETNRF.py;h=6d071712679b21d60af3797a57de58c001b7b3c2;hp=007ae0f2e3e19da299d15f43a395afd550dfb2c3;hb=7f0437503bbadfd341193513f78df8fb1751da54;hpb=7d033e4958693f8a618679d49eeae0ed735f996b diff --git a/client/GoodFETNRF.py b/client/GoodFETNRF.py index 007ae0f..6d07171 100644 --- a/client/GoodFETNRF.py +++ b/client/GoodFETNRF.py @@ -147,7 +147,7 @@ class GoodFETNRF(GoodFET): return None; def RF_carrier(self): """Hold a carrier wave on the present frequency.""" - # Set CONT_WAVE, PLL_LOCK, and 0dBm in RF_SETUP + # Set CONT_WAVE, PLL_LOCK, and 0dBm in RF_SETUP self.poke(0x06,8+10+4+2); packetlen=16; @@ -163,7 +163,7 @@ class GoodFETNRF(GoodFET): maclen=5; def RF_getmaclen(self): """Get the number of bytes in the MAC address.""" - choices=["illegal", 3, 4, 5]; + choices=[0, 3, 4, 5]; choice=self.peek(0x03)&3; self.maclen=choices[choice]; return self.maclen;