在使用外设时有个库《CC3200-Peripheral_Driver_Library_User's_Guide》可以找到使用的函数说明,
在进行网络开发时,有使用到 sl_Start sl_Task等函数,但是这些函数是做什么的,怎么使用,并没有找到相应的库文档说明,
看只有一个《CC3200 Simplelink OTA Extlib API User's Guide》里面也没有上述的函数,是没有吗????
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.
/*!
\brief This function creates a Task.
Creates a new Task and add it to the last of tasks that are ready to run
\param pEntry - pointer to the Task Function
\param pcName - Task Name String
\param usStackDepth - Stack Size in bytes
\param pvParameters - pointer to structure to be passed to the Task Function
\param uxPriority - Task Priority
\return upon successful creation the function should return 1
Otherwise, 0 or a negative value indicating the error code shall be returned
\note
\warning
*/
OsiReturnVal_e osi_TaskCreate(P_OSI_TASK_ENTRY pEntry, const signed char * const pcName, unsigned short usStackDepth,
void *pvParameters, unsigned long uxPriority, OsiTaskHandle *pTaskHandle)