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
mmSPI.h@22:7524dee5c753, 2013-08-20 (annotated)
- Committer:
- gatedClock
- Date:
- Tue Aug 20 14:13:32 2013 +0000
- Revision:
- 22:7524dee5c753
- Parent:
- 21:e90dd0f8aaa1
- Child:
- 23:dbd89a56716d
cleanup.
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
gatedClock | 2:bebcf53b72dc | 1 | #ifndef mmSPI_H // include guard. |
gatedClock | 2:bebcf53b72dc | 2 | #define mmSPI_H // include guard. |
gatedClock | 0:fb42c5acf810 | 3 | /*----------------------------------------------//------------------------------ |
gatedClock | 0:fb42c5acf810 | 4 | student : m-moore |
gatedClock | 0:fb42c5acf810 | 5 | class : external SPI interface |
gatedClock | 0:fb42c5acf810 | 6 | directory : mmSPI |
gatedClock | 0:fb42c5acf810 | 7 | file : mmSPI.h |
gatedClock | 1:15706d15d123 | 8 | ----description---------------------------------//------------------------------ |
gatedClock | 1:15706d15d123 | 9 | ----notes---------------------------------------//------------------------------ |
gatedClock | 1:15706d15d123 | 10 | 1. the SPI interface pins are routed to the zigbee header. |
gatedClock | 0:fb42c5acf810 | 11 | ------------------------------------------------//----------------------------*/ |
gatedClock | 0:fb42c5acf810 | 12 | #include "mbed.h" // standard mbed.org class. |
gatedClock | 15:d6cc57c4e23d | 13 | #include "C12832_lcd.h" // LCD. |
gatedClock | 1:15706d15d123 | 14 | //---defines------------------------------------//------------------------------ |
gatedClock | 8:e2d8bbc3e659 | 15 | #define mmSPI_MOSI p29 // SPI interface pin. |
gatedClock | 8:e2d8bbc3e659 | 16 | #define mmSPI_MISO p30 // SPI interface pin. |
gatedClock | 8:e2d8bbc3e659 | 17 | #define mmSPI_SCLK p9 // SPI interface pin. |
gatedClock | 8:e2d8bbc3e659 | 18 | #define mmCPU_CLK p10 // soft CPU system clock. |
gatedClock | 15:d6cc57c4e23d | 19 | |
gatedClock | 15:d6cc57c4e23d | 20 | |
gatedClock | 0:fb42c5acf810 | 21 | /*----------------------------------------------//------------------------------ |
gatedClock | 0:fb42c5acf810 | 22 | ------------------------------------------------//----------------------------*/ |
gatedClock | 2:bebcf53b72dc | 23 | |
gatedClock | 0:fb42c5acf810 | 24 | //==============================================//============================== |
gatedClock | 0:fb42c5acf810 | 25 | class mmSPI |
gatedClock | 0:fb42c5acf810 | 26 | { |
gatedClock | 0:fb42c5acf810 | 27 | public: |
gatedClock | 0:fb42c5acf810 | 28 | mmSPI(); // constructor. |
gatedClock | 0:fb42c5acf810 | 29 | ~mmSPI(); // destructor. |
gatedClock | 3:de99451ab3c0 | 30 | void allocations(); // object allocations. |
gatedClock | 4:aa1fe8707bef | 31 | void setSPIfrequency(float); // set SPI clock frequency. |
gatedClock | 6:b480fc4e87e5 | 32 | |
gatedClock | 6:b480fc4e87e5 | 33 | // byte transceive. |
gatedClock | 21:e90dd0f8aaa1 | 34 | |
gatedClock | 9:0551307e3b15 | 35 | |
gatedClock | 22:7524dee5c753 | 36 | void transceive_vector(char *cReceive, char *cSend, int cNumBytes); |
gatedClock | 16:0e422fd263c6 | 37 | |
gatedClock | 21:e90dd0f8aaa1 | 38 | |
gatedClock | 16:0e422fd263c6 | 39 | |
gatedClock | 16:0e422fd263c6 | 40 | void write_register(char, char, char *, char *); |
gatedClock | 17:b81c0c1f312f | 41 | char read_register(char, char *, char *); |
gatedClock | 21:e90dd0f8aaa1 | 42 | |
gatedClock | 18:4a29cad91540 | 43 | void write_memory(char, char, char, char *, char *); |
gatedClock | 18:4a29cad91540 | 44 | unsigned int read_memory(char, char *, char *); |
gatedClock | 22:7524dee5c753 | 45 | |
gatedClock | 22:7524dee5c753 | 46 | void setSendBuffer(char * pcSendBuffer); |
gatedClock | 22:7524dee5c753 | 47 | void setReceiveBuffer(char * pcReceiveBuffer); |
gatedClock | 22:7524dee5c753 | 48 | void setNumberOfBytes(int dNumberOfBytes); |
gatedClock | 15:d6cc57c4e23d | 49 | |
gatedClock | 0:fb42c5acf810 | 50 | private: |
gatedClock | 2:bebcf53b72dc | 51 | |
gatedClock | 3:de99451ab3c0 | 52 | DigitalOut * pMOSI; // SPI pin. |
gatedClock | 3:de99451ab3c0 | 53 | DigitalOut * pMISO; // SPI pin. |
gatedClock | 3:de99451ab3c0 | 54 | DigitalOut * pSCLK; // SPI pin. |
gatedClock | 8:e2d8bbc3e659 | 55 | DigitalOut * pCPUclk; // soft cpu clock. |
gatedClock | 22:7524dee5c753 | 56 | char * pcSend; // SPI transmit vector. |
gatedClock | 22:7524dee5c753 | 57 | char * pcReceive; // SPI receive vector. |
gatedClock | 4:aa1fe8707bef | 58 | float fSPIfreq; // SPI clock frequency. |
gatedClock | 4:aa1fe8707bef | 59 | float fSPIquarterP; // SPI quarter period. |
gatedClock | 22:7524dee5c753 | 60 | int dNumBytes; // number of SPI bytes. |
gatedClock | 12:a1b7ce9c1d64 | 61 | int dLoop01; // loop index. |
gatedClock | 12:a1b7ce9c1d64 | 62 | int dLoop02; // loop index. |
gatedClock | 3:de99451ab3c0 | 63 | |
gatedClock | 2:bebcf53b72dc | 64 | |
gatedClock | 2:bebcf53b72dc | 65 | |
gatedClock | 0:fb42c5acf810 | 66 | }; |
gatedClock | 2:bebcf53b72dc | 67 | //----------------------------------------------//------------------------------ |
gatedClock | 2:bebcf53b72dc | 68 | #endif // include guard. |