Files

46 lines
253 B
C
Raw Permalink Normal View History

2025-08-28 16:37:05 +08:00
#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);
}
}