Symbol loading is now in GoodFETCC instead of goodfet.cc.
[goodfet] / client / GoodFETNRF.py
index 007ae0f..82cfbb4 100644 (file)
@@ -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;