From 56354e9e0256238c8382cd441c5eeb952423bc9f Mon Sep 17 00:00:00 2001 From: sc <2401809606@qq.com> Date: Sun, 19 Oct 2025 22:19:44 +0800 Subject: [PATCH] =?UTF-8?q?=E8=BF=9B=E7=A8=8Brun=5Fled?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- applications/RUN_LED/RUN_LED.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/applications/RUN_LED/RUN_LED.c b/applications/RUN_LED/RUN_LED.c index 8bed365..2eaef53 100644 --- a/applications/RUN_LED/RUN_LED.c +++ b/applications/RUN_LED/RUN_LED.c @@ -23,7 +23,7 @@ void thread_RUN_LED(void) { /* 初始化线程 1,名称是 thread1,入口是 thread1_entry*/ rt_thread_t tid; - tid = rt_thread_create("led", RUN_LED, RT_NULL, 512, 3, 10); + tid = rt_thread_create("run_led", RUN_LED, RT_NULL, 512, 3, 10); if (tid != RT_NULL) {