This is an involuntary fork, created because the repository would not update mmSPI. SPI library used to communicate with an altera development board attached to four zigbee-header pins.

Dependents:   Embedded_RTOS_Project

Fork of mmSPI by Mike Moore

Revision:
7:b3e8b537d5c2
Parent:
6:b480fc4e87e5
Child:
8:e2d8bbc3e659
--- a/mmSPI.h	Wed Aug 14 15:19:24 2013 +0000
+++ b/mmSPI.h	Wed Aug 14 15:34:10 2013 +0000
@@ -31,6 +31,9 @@
 
                                                 // byte transceive.
         void transceive_byte(char *cReceive, char *cSend);
+        
+                                                // byte-array transceive.
+        void transceive_vector(char *cReceive, char *cSend, char cNumBytes);
       private:
       
       DigitalOut * pMOSI;                       // SPI pin.
@@ -39,6 +42,7 @@
       float        fSPIfreq;                    // SPI clock   frequency.
       float        fSPIquarterP;                // SPI quarter period.
       char         cLoop01;                     // loop index.
+      char         cLoop02;                     // loop index.