drv_clcd.h 427 B

12345678910111213141516171819202122232425
  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. * 2020/12/31 Bernard Add license info
  9. */
  10. #ifndef DRV_CLCD_H__
  11. #define DRV_CLCD_H__
  12. #include <rtthread.h>
  13. #ifndef BSP_LCD_WIDTH
  14. #define BSP_LCD_WIDTH 640
  15. #endif
  16. #ifndef BSP_LCD_HEIGHT
  17. #define BSP_LCD_HEIGHT 480
  18. #endif
  19. int drv_clcd_hw_init(void);
  20. #endif