15 lines
209 B
C
15 lines
209 B
C
/*
|
|
* File: SPI.h
|
|
* Author: JF
|
|
*
|
|
* Created on December 2, 2018, 3:36 PM
|
|
*/
|
|
|
|
#ifndef SPI_H
|
|
#define SPI_H
|
|
|
|
unsigned char SPITransaction(unsigned char OutBuf, unsigned char Baudrate);
|
|
|
|
#endif /* SPI_H */
|
|
|