Beginnings of info flash support. It isn't very good.
[goodfet] / firmware / apps / radios / nrf.c
index 043675e..bb1ed23 100644 (file)
@@ -91,12 +91,12 @@ void nrfhandle(unsigned char app,
               unsigned long len){
   unsigned long i;
   
+  //Drop CE to passify radio.
   RADIOPASSIVE;
-  
   //Raise !SS to end transaction, just in case we forgot.
   P5OUT|=SS;
   nrfsetup();
-    
+  
   switch(verb){
     //PEEK and POKE might come later.
   case READ:  
@@ -158,6 +158,7 @@ void nrfhandle(unsigned char app,
     break;
   }
   
+
   P5OUT|=SS;//End session
   RADIOACTIVE;
 }