drv_rgb_lcd.h 444 B

123456789101112131415161718192021222324
  1. /*
  2. * Copyright (c) 2006-2022, Synwit Technology Co.,Ltd.
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. *
  6. * Change Logs:
  7. * Date Author Notes
  8. * 2021-07-01 lik first version
  9. */
  10. #ifndef __DRV_RGB_LCD_H__
  11. #define __DRV_RGB_LCD_H__
  12. #include "board.h"
  13. struct swm_rgb_lcd_device
  14. {
  15. struct rt_device parent;
  16. struct rt_device_graphic_info lcd_info;
  17. };
  18. int swm_rgb_lcd_init(void);
  19. #endif /* __DRV_RGB_LCD_H__ */