/* * Copyright (c) 2006-2024, RT-Thread Development Team * * SPDX-License-Identifier: Apache-2.0 * * Change Logs: * Date Author Notes * 2024-06-22 RT-Thread first version */ #include #define DBG_TAG "main" #define DBG_LVL DBG_LOG #include int main(void) { int count = 1; while (count++) { LOG_D("Hello RT-Thread!"); rt_thread_mdelay(10); } return RT_EOK; }