EFR32 Blue Gecko 1 Software Documentation  efr32bg1-doc-5.1.2
tftspi.h
Go to the documentation of this file.
1 /**************************************************************************/
18 #ifndef __SPI_TFT_H
19 #define __SPI_TFT_H
20 
21 #include <stdint.h>
22 
23 /***************************************************************************/
28 /***************************************************************************/
33 #ifdef __cplusplus
34 extern "C" {
35 #endif
36 
37 void SPI_TFT_Init(void);
38 void SPI_TFT_WriteRegister(uint8_t reg, uint16_t data);
39 
40 #ifdef __cplusplus
41 }
42 #endif
43 
47 #endif
void SPI_TFT_WriteRegister(uint8_t reg, uint16_t data)
SPI_TFT_Write Write registers/data to SSD2119 controller.
Definition: tftspi.c:82
void SPI_TFT_Init(void)
SPI_TFT_Init Initialize SPI interface to TFT-LCD SSD2119 controller.
Definition: tftspi.c:45