2020-12-31 09:48:36 +08:00
|
|
|
/*
|
2021-12-15 14:49:09 +08:00
|
|
|
* Copyright (c) 2006-2021, RT-Thread Development Team
|
2020-12-31 09:48:36 +08:00
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
|
|
*
|
|
|
|
* Change Logs:
|
|
|
|
* Date Author Notes
|
|
|
|
* 2020/12/31 Bernard Add license info
|
|
|
|
*/
|
2017-10-21 23:26:30 +08:00
|
|
|
#ifndef DRV_CLCD_H__
|
|
|
|
#define DRV_CLCD_H__
|
|
|
|
|
2018-07-15 15:14:54 +08:00
|
|
|
#include <rtthread.h>
|
|
|
|
|
|
|
|
#ifndef BSP_LCD_WIDTH
|
|
|
|
#define BSP_LCD_WIDTH 640
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef BSP_LCD_HEIGHT
|
|
|
|
#define BSP_LCD_HEIGHT 480
|
|
|
|
#endif
|
|
|
|
|
2017-10-21 23:26:30 +08:00
|
|
|
int drv_clcd_hw_init(void);
|
|
|
|
|
|
|
|
#endif
|