Beginning CCSPI mode. Not nearly complete.
authortravisutk <travisutk@12e2690d-a6be-4b82-a7b7-67c4a43b65c8>
Thu, 24 Jun 2010 21:26:33 +0000 (21:26 +0000)
committertravisutk <travisutk@12e2690d-a6be-4b82-a7b7-67c4a43b65c8>
Thu, 24 Jun 2010 21:26:33 +0000 (21:26 +0000)
git-svn-id: https://svn.code.sf.net/p/goodfet/code/trunk@638 12e2690d-a6be-4b82-a7b7-67c4a43b65c8

client/GoodFET.py
client/GoodFETCCSPI.py [new file with mode: 0644]
client/GoodFETRadio.py [new file with mode: 0644]
client/goodfet.rf

index 10f2e6f..3033093 100755 (executable)
@@ -13,7 +13,8 @@ fmt = ("B", "<H", None, "<L")
 def getClient(name="GoodFET"):
     import GoodFET, GoodFETCC, GoodFETAVR, GoodFETSPI, GoodFETMSP430, GoodFETNRF;
     if(name=="GoodFET" or name=="monitor"): return GoodFET.GoodFET();
-    elif name=="cc" or name=="chipcon": return GoodFETCC.GoodFETCC();
+    elif name=="cc" or name=="cc51": return GoodFETCC.GoodFETCC();
+    elif name=="cc2420" or name=="ccspi": return GoodFETCC.GoodFETCC();
     elif name=="avr": return GoodFETAVR.GoodFETAVR();
     elif name=="spi": return GoodFETSPI.GoodFETSPI();
     elif name=="msp430": return GoodFETMSP430.GoodFETMSP430();
diff --git a/client/GoodFETCCSPI.py b/client/GoodFETCCSPI.py
new file mode 100644 (file)
index 0000000..48b219e
--- /dev/null
@@ -0,0 +1,176 @@
+#!/usr/bin/env python
+# GoodFET Chipcon RF Radio Client
+# 
+# (C) 2009 Travis Goodspeed <travis at radiantmachines.com>
+#
+# This code is being rewritten and refactored.  You've been warned!
+
+import sys, time, string, cStringIO, struct, glob, serial, os;
+
+from GoodFET import GoodFET;
+
+class GoodFETCCSPI(GoodFET):
+    CCSPIAPP=0x50;
+    def CCSPIsetup(self):
+        """Move the FET into the CCSPI application."""
+        self.writecmd(self.CCSPIAPP,0x10,0,self.data); #CCSPI/SETUP
+        
+    def CCSPItrans8(self,byte):
+        """Read and write 8 bits by CCSPI."""
+        data=self.CCSPItrans([byte]);
+        return ord(data[0]);
+    
+    def CCSPItrans(self,data):
+        """Exchange data by CCSPI."""
+        self.data=data;
+        self.writecmd(self.CCSPIAPP,0x00,len(data),data);
+        return self.data;
+    
+    def peek(self,reg,bytes=-1):
+        """Read a CCSPI Register.  For long regs, result is flipped."""
+        data=[reg,0,0,0,0,0];
+        
+        #Automatically calibrate the len.
+        if bytes==-1:
+            bytes=1;
+            if reg==0x0a or reg==0x0b or reg==0x10: bytes=5;
+        
+        self.writecmd(self.CCSPIAPP,0x02,len(data),data);
+        toret=0;
+        for i in range(0,bytes):
+            toret=toret|(ord(self.data[i+1])<<(8*i));
+        return toret;
+    def poke(self,reg,val,bytes=-1):
+        """Write a CCSPI Register."""
+        data=[reg];
+        
+        #Automatically calibrate the len.
+        if bytes==-1:
+            bytes=1;
+            if reg==0x0a or reg==0x0b or reg==0x10: bytes=5;
+        
+        for i in range(0,bytes):
+            data=data+[(val>>(8*i))&0xFF];
+        self.writecmd(self.CCSPIAPP,0x03,len(data),data);
+        if self.peek(reg,bytes)!=val and reg!=0x07:
+            print "Warning, failed to set r%02x=%02x, got %02x." %(reg,
+                                                                 val,
+                                                                 self.peek(reg,bytes));
+        return;
+    
+    def status(self):
+        """Read the status byte."""
+        status=self.peek(0x07);
+        print "Status=%02x" % status;
+    
+    #Radio stuff begins here.
+    def RF_setenc(self,code="GFSK"):
+        """Set the encoding type."""
+        if code!=GFSK:
+            return "%s not supported by the CCSPI24L01.  Try GFSK."
+        return;
+    def RF_getenc(self):
+        """Get the encoding type."""
+        return "GFSK";
+    def RF_getrate(self):
+        rate=self.peek(0x06)&0x28;
+        if rate==0x28:
+            rate=250*10**3; #256kbps
+        elif rate==0x08:
+            rate=2*10**6;  #2Mbps
+        elif rate==0x00: 
+            rate=1*10**6;  #1Mbps
+        return rate;
+    def RF_setrate(self,rate=2*10**6):
+        r6=self.peek(0x06); #RF_SETUP register
+        r6=r6&(~0x28);   #Clear rate fields.
+        if rate==2*10**6:
+            r6=r6|0x08;
+        elif rate==1*10**6:
+            r6=r6;
+        elif rate==250*10**3:
+            r6=r6|0x20;
+        print "Setting r6=%02x." % r6;
+        self.poke(0x06,r6); #Write new setting.
+    def RF_setfreq(self,frequency):
+        """Set the frequency in Hz."""
+        
+        #On the CCSPI24L01+, register 0x05 is the offset in
+        #MHz above 2400.
+        
+        chan=frequency/1000000-2400;
+        self.poke(0x05,chan);
+    def RF_getfreq(self):
+        """Get the frequency in Hz."""
+        
+        #On the CCSPI24L01+, register 0x05 is the offset in
+        #MHz above 2400.
+        
+        return (2400+self.peek(0x05))*10**6
+        self.poke(0x05,chan);
+    def RF_getsmac(self):
+        """Return the source MAC address."""
+        
+        #Register 0A is RX_ADDR_P0, five bytes.
+        mac=self.peek(0x0A, 5);
+        return mac;
+    def RF_setsmac(self,mac):
+        """Set the source MAC address."""
+        
+        #Register 0A is RX_ADDR_P0, five bytes.
+        self.poke(0x0A, mac, 5);
+        return mac;
+    def RF_gettmac(self):
+        """Return the target MAC address."""
+        
+        #Register 0x10 is TX_ADDR, five bytes.
+        mac=self.peek(0x10, 5);
+        return mac;
+    def RF_settmac(self,mac):
+        """Set the target MAC address."""
+        
+        #Register 0x10 is TX_ADDR, five bytes.
+        self.poke(0x10, mac, 5);
+        return mac;
+
+    def RF_rxpacket(self):
+        """Get a packet from the radio.  Returns None if none is waiting."""
+        if self.peek(0x07) & 0x40:
+            #Packet has arrived.
+            self.writecmd(self.CCSPIAPP,0x80,0,None); #RX Packet
+            data=self.data;
+            self.poke(0x07,0x40);#clear bit.
+            return data;
+        elif self.peek(0x07)==0:
+            self.writecmd(self.CCSPIAPP,0x82,0,None); #Flush
+            self.poke(0x07,0x40);#clear bit.
+        return None;
+    def RF_carrier(self):
+        """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."""
+        self.poke(0x11,len);
+        self.packetlen=len;
+    def RF_getpacketlen(self):
+        """Set the number of bytes in the expected payload."""
+        len=self.peek(0x11);
+        self.packetlen=len;
+        return len;
+    maclen=5;
+    def RF_getmaclen(self):
+        """Get the number of bytes in the MAC address."""
+        choices=[0, 3, 4, 5];
+        choice=self.peek(0x03)&3;
+        self.maclen=choices[choice];
+        return self.maclen;
+    def RF_setmaclen(self,len):
+        """Set the number of bytes in the MAC address."""
+        choices=["illegal", "illegal", "illegal", 
+                 1, 2, 3];
+        choice=choices[len];
+        self.poke(0x03,choice);
+        self.maclen=len;
diff --git a/client/GoodFETRadio.py b/client/GoodFETRadio.py
new file mode 100644 (file)
index 0000000..38f302c
--- /dev/null
@@ -0,0 +1,48 @@
+#!/usr/bin/env python
+# GoodFET Client Library
+# 
+# (C) 2009 Travis Goodspeed <travis at radiantmachines.com>
+#
+# This code is being rewritten and refactored.  You've been warned!
+
+import sys, os;
+import binascii;
+
+from GoodFET import GoodFET;
+from intelhex import IntelHex;
+
+
+#grep CMD GoodFETConsole.py | grep def | sed s/\(sel.\*// | sed 's/def CMD//'
+
+class GoodFETRadio():
+    """An interactive goodfet driver."""
+    
+    def __init__(self, client):
+        self.client=client;
+    def start(self):
+        client=self.client;
+        client.serInit();
+        client.setup();
+        client.start();
+        client.loadsymbols();
+        
+    def stop(self):
+        self.client.stop();
+    
+    def test(self):
+        print "Trying all functions.";
+        self.setfreq(2.481*10**9);
+        self.getfreq();
+        
+    def carrier(self):
+        """Hold a carrier wave on the present frequency."""
+        self.client.RF_carrier();
+    def setfreq(self,freq):
+        """Set the center frequency in Hz."""
+        self.client.RF_setfreq(freq);
+    def getfreq(self):
+        """Get the center frequency in Hz."""
+        return self.client.RF_getfreq();
+    def getrssi(self):
+        """Get the received signal strength as a float from 0 to 1."""
+        return self.client.RF_getrssi();
index 7b66efd..525c1fa 100755 (executable)
@@ -14,7 +14,7 @@ from GoodFET import GoodFET, getClient;
 
 if(len(sys.argv)==1):
     print "Usage: %s [driver|verb] verb [objects]\n" % sys.argv[0];
-    print "driver:= cc | nrf"; #msp430
+    print "driver:= cc51 | ccspi | nrf"; #msp430
     print "verb:=   info";
     print "         rs|radioinfo";
     print "         test";