-
Notifications
You must be signed in to change notification settings - Fork 0
/
spi.h
70 lines (57 loc) · 2.69 KB
/
spi.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
////////////////////////////////////////////////////////////////////////////////
/// @file
/// @brief Serial Peripheral Interface (SPI) driver.
////////////////////////////////////////////////////////////////////////////////
#ifndef SPI_H_
#define SPI_H_
// *****************************************************************************
// ************************** System Include Files *****************************
// *****************************************************************************
#include <xc.h>
#include <stdbool.h>
#include <stddef.h>
#include <stdint.h>
// *****************************************************************************
// ************************** User Include Files *******************************
// *****************************************************************************
// *****************************************************************************
// ************************** Defines ******************************************
// *****************************************************************************
#define mSPI2_SS_SET() (LATGCLR = _LATG_LATG9_MASK) // Assert select.
#define mSPI2_SS_CLR() (LATGSET = _LATG_LATG9_MASK) // Deassert select.
typedef enum {
SPI_PORT_SPI2 = 2,
} SPI_PORT;
typedef struct {
SPI_PORT port;
uint8_t *rxBuf;
uint8_t *txBuf;
unsigned int length;
unsigned int xferDone;
} SPI_XFER;
// *****************************************************************************
// ************************** Declarations *************************************
// *****************************************************************************
// *****************************************************************************
// ************************** Function Prototypes ******************************
// *****************************************************************************
////////////////////////////////////////////////////////////////////////////////
/// @brief This function services the SPI module.
///
/// This function manages the SPI transfer to determining transfer completion.
////////////////////////////////////////////////////////////////////////////////
void SPITask( void );
////////////////////////////////////////////////////////////////////////////////
/// @brief Transfer SPI data.
///
/// @param xfer
/// Buffer of control and communication data for transfer.
///
/// @return Status of transfer queue attempt.
/// 0 - Success.
/// 1 - Failure.
///
/// This function queues SPI data for subsequent transfer.
////////////////////////////////////////////////////////////////////////////////
int SPIXfer(SPI_XFER *xfer);
#endif // SPI_H_