rt-thread/bsp/imxrt/imxrt1060-nxp-evk/applications/lvgl/demo/lv_demo.c

18 lines
446 B
C
Raw Normal View History

/*
2023-04-11 17:16:22 +08:00
* Copyright (c) 2006-2023, RT-Thread Development Team
*
* SPDX-License-Identifier: Apache-2.0
*
* Change Logs:
* Date Author Notes
2022-05-12 01:30:27 +08:00
* 2021-10-17 Meco Man First version
* 2022-05-10 Meco Man improve rt-thread initialization process
*/
2022-05-12 01:30:27 +08:00
void lv_user_gui_init(void)
{
2022-05-12 01:30:27 +08:00
/* display demo; you may replace with your LVGL application at here */
extern void lv_demo_music(void);
lv_demo_music();
}