You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
805 B
22 lines
805 B
/*
|
|
* Copyright (c) 2006-2022, RT-Thread Development Team
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*
|
|
* Change Logs:
|
|
* Date Author Notes
|
|
* 2011-12-16 onelife Initial creation of address mapped method (pixel
|
|
* drive) for EFM32GG_DK3750 board
|
|
*/
|
|
|
|
#ifndef __DEV_LCD_H__
|
|
#define __DEV_LCD_H__
|
|
|
|
/* Includes ------------------------------------------------------------------*/
|
|
/* Exported types ------------------------------------------------------------*/
|
|
/* Exported constants --------------------------------------------------------*/
|
|
/* Exported macro ------------------------------------------------------------*/
|
|
/* Exported functions ------------------------------------------------------- */
|
|
void efm32_spiLcd_init(void);
|
|
|
|
#endif /* __DEV_LCD_H__ */
|
|
|