lv_ui_entry.c 385 字节
Newer Older
mysterywolf's avatar
mysterywolf 已提交
1
/*
2
 * Copyright (c) 2006-2023, RT-Thread Development Team
mysterywolf's avatar
mysterywolf 已提交
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
 *
 * SPDX-License-Identifier: Apache-2.0
 *
 * Change Logs:
 * Date           Author        Notes
 * 2022-05-13     Meco Man      First version
 */

#include <rtconfig.h>
#include <lvgl.h>

void lv_user_gui_init(void)
{
#ifdef PKG_USING_GUI_GUIDER_DEMO
    extern void gui_guider_setup(void);
    gui_guider_setup();
#endif
}