feat(rtthread): prepare for porting the device-driver of rt-thread (#2719)

This commit is contained in:
Jianting (Meco) Man
2021-10-22 05:13:39 -04:00
committed by GitHub
parent 00e5597d69
commit 9d7f53012c
2 changed files with 21 additions and 3 deletions

View File

@@ -16,6 +16,13 @@
#define DBG_LVL DBG_INFO
#include <rtdbg.h>
#ifndef PKG_USING_LVGL_DISP_DEVICE
# include <lv_port_disp.h>
#endif
#ifndef PKG_USING_LVGL_INDEV_DEVICE
# include <lv_port_indev.h>
#endif
#if LV_USE_LOG && LV_LOG_PRINTF
static void lv_rt_log(const char *buf)
{
@@ -29,6 +36,15 @@ static int lv_port_init(void)
lv_log_register_print_cb(lv_rt_log);
#endif
lv_init();
#ifndef PKG_USING_LVGL_DISP_DEVICE
lv_port_disp_init();
#endif
#ifndef PKG_USING_LVGL_INDEV_DEVICE
lv_port_indev_init();
#endif
return 0;
}
INIT_COMPONENT_EXPORT(lv_port_init);