Subversion Repositories Code-Repo

Rev

Rev 249 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
249 Kevin 1
#ifndef SPI_H_
2
#define SPI_H_
3
 
4
#define SPI_BUFFER_LENGTH 30
5
 
6
typedef struct {
7
	char writeBuffer[SPI_BUFFER_LENGTH];
8
	char readBuffer[SPI_BUFFER_LENGTH];
9
 
10
} SPI_DATA;
11
 
12
 
13
#endif /* SPI_H_ */