WIZlib Library API  ver 1.0
WIZlib Library API User Menual
 All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
wizspi.h
Go to the documentation of this file.
1 
12 #ifndef _SPI_H
13 #define _SPI_H
14 
15 #include "common/common.h"
16 
17 
22 typedef enum {
23  WIZ_SPI1 = 0,
24  WIZ_SPI2 = 1,
25  WIZ_SPI3 = 2
26 } wizpf_spi;
27 
28 
29 int8 wizspi_init(wizpf_spi spi);
30 void wizspi_cs(wizpf_spi spi, uint8 val);
31 uint8 wizspi_byte(wizpf_spi spi, uint8 byte);
32 
33 #endif //_SPI_H
34 
35 
36