Go to the source code of this file.
Defines | |
| #define | SHELL_TASK_STACK_SIZE 256 |
Functions | |
| void | ShellTaskInit (void) |
| void | ShellTask (void) |
Variables | |
| OS_STACK | ShellTaskStack [SHELL_TASK_STACK_SIZE] |
| U8 | ShellTaskName [] |
| #define SHELL_TASK_STACK_SIZE 256 |
Definition at line 4 of file shelltask.h.
| void ShellTask | ( | void | ) |
Definition at line 18 of file shelltask.c.
00018 { 00019 ShellTaskInit(); 00020 //OsTaskCreat(TaskB,(OS_STACK*)&TaskbStack[TASKB_STACK_SIZE-1],&TaskbName,8); 00021 //OsTaskCreat(TaskC,(OS_STACK*)&TaskcStack[TASKC_STACK_SIZE-1],&TaskcName,9); 00022 //OsTaskCreat(LptTask,(OS_STACK*)&LptTaskStack[LPT_TASK_STACK_SIZE-1],&LptTaskName,9); 00023 //OsTaskCreat(Com2Task,(OS_STACK*)&Com2TaskStack[COM2_TASK_STACK_SIZE-1],&Com2TaskName,9); 00024 //OsTaskCreat(RtcTask,(OS_STACK*)&RtcTaskStack[RTC_TASK_STACK_SIZE-1],&RtcTaskName,9); 00025 while(1){ 00026 ShellSvc(); 00027 XmodemSvc(); 00028 } 00029 }
| void ShellTaskInit | ( | void | ) |
Definition at line 11 of file shelltask.c.
| OS_STACK ShellTaskStack[SHELL_TASK_STACK_SIZE] |
Definition at line 12 of file shelltask.c.
1.5.9