rt-thread/bsp/qemu-vexpress-a9/drivers/drv_clcd.h

17 lines
219 B
C
Raw Normal View History

2017-10-21 23:26:30 +08:00
#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
2017-10-21 23:26:30 +08:00
int drv_clcd_hw_init(void);
#endif