drv_clcd.h 219 B

12345678910111213141516
  1. #ifndef DRV_CLCD_H__
  2. #define DRV_CLCD_H__
  3. #include <rtthread.h>
  4. #ifndef BSP_LCD_WIDTH
  5. #define BSP_LCD_WIDTH 640
  6. #endif
  7. #ifndef BSP_LCD_HEIGHT
  8. #define BSP_LCD_HEIGHT 480
  9. #endif
  10. int drv_clcd_hw_init(void);
  11. #endif