46 lines
253 B
C
46 lines
253 B
C
#include "FreeRTOS.h"
|
|
|
|
#include "cmsis_os.h"
|
|
#include "global.h"
|
|
//#include "nr_micro_shell.h"
|
|
|
|
|
|
void StartCliTask(void * argument)
|
|
{
|
|
|
|
|
|
//shell_init();
|
|
for(;;)
|
|
{
|
|
osDelay(10);
|
|
|
|
|
|
//shell(0);
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|