mirror of
https://gitee.com/Vancouver2017/luban-lite-t3e-pro.git
synced 2025-12-13 09:58:54 +00:00
21 lines
352 B
C
21 lines
352 B
C
/*
|
|
* Copyright (c) 2022-2024, ArtInChip Technology Co., Ltd
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*
|
|
* Authors: weilin.peng@artinchip.com
|
|
*/
|
|
|
|
#include <rtthread.h>
|
|
#ifdef RT_USING_ULOG
|
|
#include <ulog.h>
|
|
#endif
|
|
|
|
int main(void)
|
|
{
|
|
#ifdef ULOG_USING_FILTER
|
|
ulog_global_filter_lvl_set(ULOG_OUTPUT_LVL);
|
|
#endif
|
|
return 0;
|
|
}
|