소스 검색

fix: luat_rtos.h变更导致编译失败

Wendal Chen 4 년 전
부모
커밋
6b5b985fd9
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      application/src/luat_rtos_air105.c

+ 1 - 1
application/src/luat_rtos_air105.c

@@ -31,7 +31,7 @@
 #include "luat_log.h"
 
 int luat_thread_start(luat_thread_t* thread){
-    Task_Create(thread->thread, NULL, thread->stack_size, thread->priority, thread->name);
+    Task_Create(thread->entry, NULL, thread->stack_size, thread->priority, thread->name);
     return 0;
 }