Minor NRF cleanup.
[goodfet] / firmware / apps / radios / nrf.c
index 6b2ad59..90fc1a9 100644 (file)
 
 //! Set up the pins for NRF mode.
 void nrfsetup(){
-  P5OUT=SS;
+  P5OUT|=SS;
   P5DIR&=~MISO;
   P5DIR|=MOSI+SCK+SS;
   
   
+  /*
   //Begin a new transaction.
   P5OUT&=~SS; 
   P5OUT|=SS;
+  */
 }