Files
luban-lite-t3e-pro/application/rt-thread/helloworld/main.c

21 lines
332 B
C
Raw Normal View History

2023-08-30 16:21:18 +08:00
/*
2024-09-03 11:16:08 +08:00
* Copyright (c) 2022-2024, ArtInChip Technology Co., Ltd
2023-08-30 16:21:18 +08:00
*
* SPDX-License-Identifier: Apache-2.0
*
* Authors: weilin.peng@artinchip.com
*/
2023-11-09 20:19:51 +08:00
2023-08-30 16:21:18 +08:00
#include <rtthread.h>
2024-04-03 16:40:57 +08:00
#ifdef RT_USING_ULOG
#include <ulog.h>
#endif
2023-08-30 16:21:18 +08:00
int main(void)
{
2024-04-03 16:40:57 +08:00
#ifdef ULOG_USING_FILTER
ulog_global_filter_lvl_set(ULOG_OUTPUT_LVL);
#endif
2023-08-30 16:21:18 +08:00
return 0;
}