1 /*
2  * Copyright (c) 2006-2021, RT-Thread Development Team
3  *
4  * SPDX-License-Identifier: Apache-2.0
5  *
6  * Change Logs:
7  * Date           Author       Notes
8  * 2020/12/31     Bernard      Add license info
9  */
10 #ifndef DRV_CLCD_H__
11 #define DRV_CLCD_H__
12 
13 #include <rtthread.h>
14 #include <rtdevice.h>
15 
16 #ifndef BSP_LCD_WIDTH
17 #define BSP_LCD_WIDTH   640
18 #endif
19 
20 #ifndef BSP_LCD_HEIGHT
21 #define BSP_LCD_HEIGHT  480
22 #endif
23 
24 int drv_clcd_hw_init(void);
25 
26 #endif
27