1 /*
2  * Copyright (c) 2006-2022, RT-Thread Development Team
3  *
4  * SPDX-License-Identifier: Apache-2.0
5  *
6  * Change Logs:
7  * Date         Author      Notes
8  * 2011-12-16   onelife     Initial creation of address mapped method (pixel
9  *                            drive) for EFM32GG_DK3750 board
10  */
11 
12 #ifndef __DEV_LCD_H__
13 #define __DEV_LCD_H__
14 
15 /* Includes ------------------------------------------------------------------*/
16 /* Exported types ------------------------------------------------------------*/
17 /* Exported constants --------------------------------------------------------*/
18 /* Exported macro ------------------------------------------------------------*/
19 /* Exported functions ------------------------------------------------------- */
20 void efm32_spiLcd_init(void);
21 
22 #endif /* __DEV_LCD_H__ */
23