vTaskStartScheduler 中,创建的空闲任务prvIdleTask,定义到底在哪。找到的资料说
/*
* -----------------------------------------------------------
* The Idle task.
* ----------------------------------------------------------
*
* The portTASK_FUNC
tiON() macro is used to allow port/compiler specific
* language extensions. The equivalent prototype for this function is:
*
* void prvIdleTask( void *pvParameters );
*
*/
static portTASK_FUNCTION( prvIdleTask, pvParameters )
portTASK_FUNCTION 与 prvIdleTask 是一样的,是怎么个流程呢?
找了半天都找不到有人反映过这个问题。。。