SPI library used to communicate with an altera development board attached to four zigbee-header pins.

mmSPI.h

Committer:
gatedClock
Date:
2013-08-14
Revision:
0:fb42c5acf810
Child:
1:15706d15d123

File content as of revision 0:fb42c5acf810:

/*----------------------------------------------//------------------------------
    student   : m-moore
    class     : external SPI interface
    directory : mmSPI
    file      : mmSPI.h
------------------------------------------------//----------------------------*/
    #include "mbed.h"                           // standard mbed.org class.
/*----------------------------------------------//------------------------------  
------------------------------------------------//----------------------------*/
//==============================================//==============================
    class mmSPI
    {
      public:
             mmSPI();                           // constructor.
            ~mmSPI();                           // destructor.
      private:
    };
//----------------------------------------------//------------------------------