mirror of
https://github.com/RT-Thread/rt-thread.git
synced 2025-01-21 11:53:31 +08:00
15 lines
301 B
C
15 lines
301 B
C
/*
|
|
* Copyright (c) 2006-2022, RT-Thread Development Team
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*
|
|
* Change Logs:
|
|
* Date Author Notes
|
|
* 2022-01-28 Rudy Lo The first version
|
|
*/
|
|
void lv_user_gui_init(void)
|
|
{
|
|
extern void lv_demo_music(void);
|
|
lv_demo_music();
|
|
}
|