This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

SYS/BIOS系统任务如何中止



SYS/BIOS系统中做了一个任务,用于DSP初始化,初始化结束后怎么注销掉这个任务呢?是在任务函数里用task_delete么?

int DSP_INIT(void)

{

   emif_init();

  .......

  return 1;

 task_delete();

}

是这样么?