9 lines
115 B
C
9 lines
115 B
C
#ifndef _SPI_H
|
|
#define _SPI_H
|
|
|
|
#include <stdint.h>
|
|
|
|
uint8_t spi_byte(uint8_t);
|
|
uint16_t spi_word(uint16_t);
|
|
|
|
#endif |