Browse Source

Update components.c

Bluebear233 8 years ago
parent
commit
8d7686179c
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/components.c

+ 1 - 1
src/components.c

@@ -206,7 +206,7 @@ void rt_application_init(void)
 
 
     tid = &main_thread;
     tid = &main_thread;
     result = rt_thread_init(tid, "main", main_thread_entry, RT_NULL,
     result = rt_thread_init(tid, "main", main_thread_entry, RT_NULL,
-                            main_stack, 2048, RT_THREAD_PRIORITY_MAX / 3, 20);
+                            main_stack, sizeof(main_stack), RT_THREAD_PRIORITY_MAX / 3, 20);
     RT_ASSERT(result != RT_EOK);
     RT_ASSERT(result != RT_EOK);
 #endif
 #endif