Reflow oven controller firmware
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

15 lines
261 B

/* spi.h */
#ifndef _SPI_H_
#define _SPI_H_
void spi_init(void);
char spi_txrxbyte(char data);
char spi_rxbyte(void);
void spi_start(void);
void spi_stop(void);
#define spi_txbyte(data) (void)spi_txrxbyte(data)
//#define spi_rxbyte() spi_txrxbyte(0)
#endif