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 * 2018-07-28 liu2guang the first version for STM32F469NI-Discovery. 9 */ 10 11 #ifndef __DRV_LCD_H_ 12 #define __DRV_LCD_H_ 13 14 #include <rtthread.h> 15 #include <rtdevice.h> 16 #include <board.h> 17 18 #define LCD_WIDTH (800U) 19 #define LCD_HEIGHT (480U) 20 21 #define LCD_HSYNC (1U) 22 #define LCD_HBP (15U) 23 #define LCD_HFP (16U) 24 #define LCD_VSYNC (2U) 25 #define LCD_VBP (34U) 26 #define LCD_VFP (34U) 27 28 #endif 29