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