no-OS
maxim_spi.h
Go to the documentation of this file.
1 /***************************************************************************/
40 #ifndef MAXIM_SPI_H_
41 #define MAXIM_SPI_H_
42 
43 #include <stdint.h>
44 #include "no_os_spi.h"
45 
49 extern const struct no_os_spi_platform_ops max_spi_ops;
50 
57 };
58 
62 struct max_spi_init_param {
63  uint32_t num_slaves;
65 };
66 
67 #endif
no_os_spi.h
Header file of SPI Interface.
no_os_spi_platform_ops
Structure holding SPI function pointers that point to the platform specific function.
Definition: no_os_spi.h:203
SPI_SS_POL_LOW
@ SPI_SS_POL_LOW
Definition: maxim_spi.h:55
SPI_SS_POL_HIGH
@ SPI_SS_POL_HIGH
Definition: maxim_spi.h:56
max_spi_init_param
Maxim specific SPI initialization parameters.
Definition: maxim_spi.h:59
max_spi_init_param::polarity
enum spi_ss_polarity polarity
Definition: maxim_spi.h:61
max_spi_init_param::num_slaves
uint32_t num_slaves
Definition: maxim_spi.h:60
spi_ss_polarity
spi_ss_polarity
Definition: maxim_spi.h:54
max_spi_ops
const struct no_os_spi_platform_ops max_spi_ops
maxim specific SPI platform ops structure
Definition: maxim_spi.c:801