1 /* 2 * Copyright (c) 2006-2021, RT-Thread Development Team 3 * 4 * SPDX-License-Identifier: Apache-2.0 5 * 6 * Change Logs: 7 * Date Author Notes 8 * 2021-10-17 Meco Man first version 9 * 2022-05-10 Meco Man improve rt-thread initialization process 10 */ 11 #include <lvgl.h> 12 lv_user_gui_init(void)13void lv_user_gui_init(void) 14 { 15 /* display demo; you may replace with your LVGL application at here */ 16 extern void lv_demo_calendar(void); 17 lv_demo_calendar(); 18 } 19