//***************************************************************** // // File Name : 'spi.h' // Title : SPI driver // Author : Pascal Stang // Date : 11/22/2000 // Version : 0.1 // Target MCU : ATmega103 // Editor Tabs : 3 // //***************************************************************** #ifndef SPI_H #define SPI_H #include "global.h" // function prototypes void spiInit(void); void spiSendByte(u08 byte); #endif