2023-04-19 14:01:34 +08:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2006-2023, RT-Thread Development Team
|
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
|
|
*
|
|
|
|
* Change Logs:
|
|
|
|
* Date Author Notes
|
|
|
|
* 2021-10-17 Meco Man First version
|
|
|
|
* 2022-05-10 Meco Man improve rt-thread initialization process
|
|
|
|
*/
|
2023-05-13 14:37:11 +08:00
|
|
|
#include "rtconfig.h"
|
2023-04-19 14:01:34 +08:00
|
|
|
|
|
|
|
void lv_user_gui_init(void)
|
|
|
|
{
|
|
|
|
/* display demo; you may replace with your LVGL application at here */
|
2023-05-13 14:37:11 +08:00
|
|
|
#ifdef BSP_USING_LVGL_VIDEO_DEMO
|
2023-05-04 18:12:57 +08:00
|
|
|
extern void lv_video_gui_init(void);
|
|
|
|
lv_video_gui_init();
|
2023-06-02 15:47:09 +08:00
|
|
|
#else
|
2023-05-13 14:37:11 +08:00
|
|
|
extern void lv_demo_music(void);
|
|
|
|
lv_demo_music();
|
|
|
|
#endif
|
2023-04-19 14:01:34 +08:00
|
|
|
}
|