lv_demo.c 470 B

123456789101112131415161718
  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. void lv_user_gui_init(void)
  13. {
  14. /* display demo; you may replace with your LVGL application at here */
  15. extern void lv_demo_calendar(void);
  16. lv_demo_calendar();
  17. }