lv_demo.c 446 字节
Newer Older
R
Rbb666 已提交
1
/*
2
 * Copyright (c) 2006-2023, RT-Thread Development Team
R
Rbb666 已提交
3 4 5 6 7
 *
 * SPDX-License-Identifier: Apache-2.0
 *
 * Change Logs:
 * Date           Author        Notes
8 9
 * 2021-10-17     Meco Man      First version
 * 2022-05-10     Meco Man      improve rt-thread initialization process
R
Rbb666 已提交
10 11
 */

12
void lv_user_gui_init(void)
R
Rbb666 已提交
13
{
14
    /* display demo; you may replace with your LVGL application at here */
R
Rbb666 已提交
15 16 17
    extern void lv_demo_music(void);
    lv_demo_music();
}