Public Attributes#

TaskFunction_t

The function of the task (Invalid parameter if NULL)

char *

The name of the task. (Max characters = configMAX_TASK_NAME_LEN). NULL allowed.

void *

Any parameter variable of own choice that is casted as (void*). Can be NULL.

The desired priority of the task.

The buffer collection for the task.

Public Attribute Documentation#

pTaskFunc#

TaskFunction_t ZW_UserTask_t::pTaskFunc

The function of the task (Invalid parameter if NULL)


pTaskName#

char* ZW_UserTask_t::pTaskName

The name of the task. (Max characters = configMAX_TASK_NAME_LEN). NULL allowed.


pUserTaskParam#

void* ZW_UserTask_t::pUserTaskParam

Any parameter variable of own choice that is casted as (void*). Can be NULL.


priority#

ZW_UserTask_Priority_t ZW_UserTask_t::priority

The desired priority of the task.


taskBuffer#

ZW_UserTask_Buffer_t* ZW_UserTask_t::taskBuffer

The buffer collection for the task.

See Also