10 lines
120 B
C
10 lines
120 B
C
#ifndef SPI_H
|
|
#define SPI_H
|
|
|
|
#include "../config.h"
|
|
|
|
void spi_init();
|
|
|
|
unsigned char spi_data(unsigned char c);
|
|
|
|
#endif
|