@ -239,7 +239,7 @@ structure passed to the xTaskCreateRestricted() function. */
staticconstxTaskParametersxCheckTaskParameters=
staticconstxTaskParametersxCheckTaskParameters=
{
{
prvCheckTask,/* pvTaskCode - the function that implements the task. */
prvCheckTask,/* pvTaskCode - the function that implements the task. */
(signedchar*)"Check",/* pcName */
"Check",/* pcName */
mainCHECK_TASK_STACK_SIZE_WORDS,/* usStackDepth - defined in words, not bytes. */
mainCHECK_TASK_STACK_SIZE_WORDS,/* usStackDepth - defined in words, not bytes. */
(void*)0x12121212,/* pvParameters - this value is just to test that the parameter is being passed into the task correctly. */
(void*)0x12121212,/* pvParameters - this value is just to test that the parameter is being passed into the task correctly. */
(tskIDLE_PRIORITY+1)|portPRIVILEGE_BIT,/* uxPriority - this is the highest priority task in the system. The task is created in privileged mode to demonstrate accessing the privileged only data. */
(tskIDLE_PRIORITY+1)|portPRIVILEGE_BIT,/* uxPriority - this is the highest priority task in the system. The task is created in privileged mode to demonstrate accessing the privileged only data. */
prvRegTest1Task,/* pvTaskCode - the function that implements the task. */
prvRegTest1Task,/* pvTaskCode - the function that implements the task. */
(signedchar*)"RegTest1",/* pcName */
"RegTest1",/* pcName */
mainREG_TEST_STACK_SIZE_WORDS,/* usStackDepth */
mainREG_TEST_STACK_SIZE_WORDS,/* usStackDepth */
(void*)0x12345678,/* pvParameters - this value is just to test that the parameter is being passed into the task correctly. */
(void*)0x12345678,/* pvParameters - this value is just to test that the parameter is being passed into the task correctly. */
tskIDLE_PRIORITY|portPRIVILEGE_BIT,/* uxPriority - note that this task is created with privileges to demonstrate one method of passing a queue handle into the task. */
tskIDLE_PRIORITY|portPRIVILEGE_BIT,/* uxPriority - note that this task is created with privileges to demonstrate one method of passing a queue handle into the task. */
@ -247,7 +247,7 @@ structure passed to the xTaskCreateRestricted() function. */
staticconstxTaskParametersxCheckTaskParameters=
staticconstxTaskParametersxCheckTaskParameters=
{
{
prvCheckTask,/* pvTaskCode - the function that implements the task. */
prvCheckTask,/* pvTaskCode - the function that implements the task. */
(signedchar*)"Check",/* pcName */
"Check",/* pcName */
mainCHECK_TASK_STACK_SIZE_WORDS,/* usStackDepth - defined in words, not bytes. */
mainCHECK_TASK_STACK_SIZE_WORDS,/* usStackDepth - defined in words, not bytes. */
(void*)0x12121212,/* pvParameters - this value is just to test that the parameter is being passed into the task correctly. */
(void*)0x12121212,/* pvParameters - this value is just to test that the parameter is being passed into the task correctly. */
(tskIDLE_PRIORITY+1)|portPRIVILEGE_BIT,/* uxPriority - this is the highest priority task in the system. The task is created in privileged mode to demonstrate accessing the privileged only data. */
(tskIDLE_PRIORITY+1)|portPRIVILEGE_BIT,/* uxPriority - this is the highest priority task in the system. The task is created in privileged mode to demonstrate accessing the privileged only data. */
prvRegTest1Task,/* pvTaskCode - the function that implements the task. */
prvRegTest1Task,/* pvTaskCode - the function that implements the task. */
(signedchar*)"RegTest1",/* pcName */
"RegTest1",/* pcName */
mainREG_TEST_STACK_SIZE_WORDS,/* usStackDepth */
mainREG_TEST_STACK_SIZE_WORDS,/* usStackDepth */
(void*)0x12345678,/* pvParameters - this value is just to test that the parameter is being passed into the task correctly. */
(void*)0x12345678,/* pvParameters - this value is just to test that the parameter is being passed into the task correctly. */
tskIDLE_PRIORITY|portPRIVILEGE_BIT,/* uxPriority - note that this task is created with privileges to demonstrate one method of passing a queue handle into the task. */
tskIDLE_PRIORITY|portPRIVILEGE_BIT,/* uxPriority - note that this task is created with privileges to demonstrate one method of passing a queue handle into the task. */