You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
xTaskCreate(prvWSFMsgTask, /* The function that implements the task. */
216
-
"CordioM", /* Text name for the task, just to help debugging. */
217
-
WSF_DISPATCHER_MSG_STACK_SIZE, /* The size (in words) of the stack that should be created for the task. */
211
+
xTaskCreate(prvWSFDispatchTask, /* The function that implements the task. */
212
+
"Cordio", /* Text name for the task, just to help debugging. */
213
+
WSF_DISPATCHER_STACK_SIZE, /* The size (in words) of the stack that should be created for the task. */
218
214
NULL, /* A parameter that can be passed into the task. Not used. */
219
-
WSF_DISPATCHER_MSG_TASK_PRIORITY, /* The priority to assign to the task. tskIDLE_PRIORITY (which is 0) is the lowest priority. configMAX_PRIORITIES - 1 is the highest priority. */
220
-
&wsfOs.task.msgTaskHandle); /* Used to obtain a handle to the created task. Not used, so set to NULL. */
221
-
WSF_ASSERT(wsfOs.task.msgTaskHandle);
222
-
xTaskCreate(prvWSFHndTask, /* The function that implements the task. */
223
-
"CordioH", /* Text name for the task, just to help debugging. */
224
-
WSF_DISPATCHER_HND_STACK_SIZE, /* The size (in words) of the stack that should be created for the task. */
225
-
NULL, /* A parameter that can be passed into the task. Not used. */
226
-
WSF_DISPATCHER_HND_TASK_PRIORITY, /* The priority to assign to the task. tskIDLE_PRIORITY (which is 0) is the lowest priority. configMAX_PRIORITIES - 1 is the highest priority. */
227
-
&wsfOs.task.hndTaskHandle); /* Used to obtain a handle to the created task. Not used, so set to NULL. */
228
-
WSF_ASSERT(wsfOs.task.hndTaskHandle);
215
+
WSF_DISPATCHER_TASK_PRIORITY, /* The priority to assign to the task. tskIDLE_PRIORITY (which is 0) is the lowest priority. configMAX_PRIORITIES - 1 is the highest priority. */
216
+
&wsfOs.task.taskHandle); /* Used to obtain a handle to the created task. */
0 commit comments