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 
11 #ifndef __DRV_RGB_LCD_H__
12 #define __DRV_RGB_LCD_H__
13 
14 #include "board.h"
15 
16 struct swm_rgb_lcd_device
17 {
18     struct rt_device parent;
19     struct rt_device_graphic_info lcd_info;
20 };
21 
22 int swm_rgb_lcd_init(void);
23 
24 #endif /* __DRV_RGB_LCD_H__ */
25