1、文件 - 新建 - RT-Thread项目 2、编译,下载 3、打开串口 可以看到串口打印的消息 4、在main函数输出调试信息 int main(void) { int count = 1; while (count++) { LOG_D("Hello RT-Thread!"); rt_thread_mdelay(1000); } return RT_EOK; }