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.
25 lines
427 B
25 lines
427 B
/*
|
|
* Copyright (c) 2006-2021, RT-Thread Development Team
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*
|
|
* Change Logs:
|
|
* Date Author Notes
|
|
* 2020/12/31 Bernard Add license info
|
|
*/
|
|
#ifndef DRV_CLCD_H__
|
|
#define DRV_CLCD_H__
|
|
|
|
#include <rtthread.h>
|
|
|
|
#ifndef BSP_LCD_WIDTH
|
|
#define BSP_LCD_WIDTH 640
|
|
#endif
|
|
|
|
#ifndef BSP_LCD_HEIGHT
|
|
#define BSP_LCD_HEIGHT 480
|
|
#endif
|
|
|
|
int drv_clcd_hw_init(void);
|
|
|
|
#endif
|
|
|