more work on ccspi reflexive jam with autoack. jamming is slow in the autoack mode...
[goodfet] / client / goodfet.ccspi
index f681cad..6c2d242 100755 (executable)
@@ -56,7 +56,7 @@ if(sys.argv[1]=="modulated_spectrum"):
     while(1):
         time.sleep(1);
 
-if(sys.argv[1]=="reflexjam"):
+if(sys.argv[1]=="reflexjam" or sys.argv[1]=="reflexjamack"):
     #Setup the radio to listen promiscously on a frequency
     client.RF_promiscuity(1);
     client.RF_autocrc(0);
@@ -69,7 +69,10 @@ if(sys.argv[1]=="reflexjam"):
     client.CC_RFST_RX();
     print "Reflexively jamming on %i MHz" % (client.RF_getfreq()/10**6);
     #Now we let the firmware take over, watching for packets and jamming them.
-    client.RF_reflexjam();
+    if sys.argv[1]=="reflexjam":
+        client.RF_reflexjam();
+    elif sys.argv[1]=="reflexjamack":
+        client.RF_reflexjam_autoack();
 
 if(sys.argv[1]=="info"):
     print "Found   %s" % client.identstr();