Skip to content

Commit 71670fb

Browse files
committed
update task parameters struct
1 parent b758871 commit 71670fb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/task.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ typedef struct xMEMORY_REGION
129129
typedef struct xTASK_PARAMETERS
130130
{
131131
TaskFunction_t pvTaskCode;
132-
const char * const pcName; /*lint !e971 Unqualified char types are allowed for strings and single characters only. */
132+
const char * pcName; /*lint !e971 Unqualified char types are allowed for strings and single characters only. */
133133
configSTACK_DEPTH_TYPE usStackDepth;
134134
void * pvParameters;
135135
UBaseType_t uxPriority;
@@ -1600,7 +1600,7 @@ configSTACK_DEPTH_TYPE uxTaskGetStackHighWaterMark( TaskHandle_t xTask ) PRIVILE
16001600
#if ( configSUPPORT_STATIC_ALLOCATION == 1 )
16011601
/**
16021602
* task.h
1603-
* <pre>void vApplicationGetIdleTaskMemory( StaticTask_t ** ppxIdleTaskTCBBuffer, StackType_t ** ppxIdleTaskStackBuffer, configSTACK_DEPTH_TYPE *pulIdleTaskStackSize ) </pre>
1603+
* <pre>void vApplicationGetIdleTaskMemory( StaticTask_t ** ppxIdleTaskTCBBuffer, StackType_t ** ppxIdleTaskStackBuffer, configSTACK_DEPTH_TYPE * pulIdleTaskStackSize ) </pre>
16041604
*
16051605
* This function is used to provide a statically allocated block of memory to FreeRTOS to hold the Idle Task TCB. This function is required when
16061606
* configSUPPORT_STATIC_ALLOCATION is set. For more information see this URI: https://www.FreeRTOS.org/a00110.html#configSUPPORT_STATIC_ALLOCATION

0 commit comments

Comments
 (0)