mirror of
https://github.com/lvgl/lvgl.git
synced 2025-01-28 07:03:00 +08:00
33 lines
582 B
C
33 lines
582 B
C
|
/*
|
||
|
* Copyright (c) 2006-2021, RT-Thread Development Team
|
||
|
*
|
||
|
* SPDX-License-Identifier: MIT
|
||
|
*
|
||
|
* Change Logs:
|
||
|
* Date Author Notes
|
||
|
* 2021-10-18 Meco Man The first version
|
||
|
*/
|
||
|
|
||
|
#include <rtthread.h>
|
||
|
#include <lvgl.h>
|
||
|
#define DBG_TAG "LVGL"
|
||
|
#define DBG_LVL DBG_INFO
|
||
|
#include <rtdbg.h>
|
||
|
|
||
|
#if LV_USE_LOG && LV_LOG_PRINTF
|
||
|
static void lv_rt_log(const char *buf)
|
||
|
{
|
||
|
LOG_I(buf);
|
||
|
}
|
||
|
#endif
|
||
|
|
||
|
static int lv_port_init(void)
|
||
|
{
|
||
|
#if LV_USE_LOG && LV_LOG_PRINTF
|
||
|
lv_log_register_print_cb(lv_rt_log);
|
||
|
#endif
|
||
|
|
||
|
return 0;
|
||
|
}
|
||
|
INIT_COMPONENT_EXPORT(lv_port_init);
|