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
constchar*pcName; /*lint !e971 Unqualified char types are allowed for strings and single characters only. */
142
-
configSTACK_DEPTH_TYPEusStackDepth;
142
+
configSTACK_DEPTH_TYPEuxStackDepth;
143
143
void*pvParameters;
144
144
UBaseType_tuxPriority;
145
145
StackType_t*puxStackBuffer;
@@ -161,7 +161,7 @@ typedef struct xTASK_STATUS
161
161
UBaseType_tuxBasePriority; /* The priority to which the task will return if the task's current priority has been inherited to avoid unbounded priority inversion when obtaining a mutex. Only valid if configUSE_MUTEXES is defined as 1 in FreeRTOSConfig.h. */
162
162
uint32_tulRunTimeCounter; /* The total run time allocated to the task so far, as defined by the run time stats clock. See https://www.FreeRTOS.org/rtos-run-time-stats.html. Only valid when configGENERATE_RUN_TIME_STATS is defined as 1 in FreeRTOSConfig.h. */
163
163
StackType_t*pxStackBase; /* Points to the lowest address of the task's stack area. */
164
-
configSTACK_DEPTH_TYPEusStackHighWaterMark; /* The minimum amount of stack space that has remained for the task since the task was created. The closer this value is to zero the closer the task has come to overflowing its stack. */
164
+
configSTACK_DEPTH_TYPEuxStackHighWaterMark; /* The minimum amount of stack space that has remained for the task since the task was created. The closer this value is to zero the closer the task has come to overflowing its stack. */
165
165
} TaskStatus_t;
166
166
167
167
/* Possible return values for eTaskConfirmSleepModeStatus(). */
@@ -257,7 +257,7 @@ typedef enum
257
257
* BaseType_t xTaskCreate(
258
258
* TaskFunction_t pxTaskCode,
259
259
* const char * const pcName,
260
-
* const configSTACK_DEPTH_TYPE usStackDepth,
260
+
* const configSTACK_DEPTH_TYPE uxStackDepth,
261
261
* void *pvParameters,
262
262
* UBaseType_t uxPriority,
263
263
* TaskHandle_t *pxCreatedTask
@@ -291,9 +291,9 @@ typedef enum
291
291
* facilitate debugging. Max length defined by configMAX_TASK_NAME_LEN - default
292
292
* is 16.
293
293
*
294
-
* @param usStackDepth The size of the task stack specified as the number of
294
+
* @param uxStackDepth The size of the task stack specified as the number of
295
295
* variables the stack can hold - not the number of bytes. For example, if
296
-
* the stack is 16 bits wide and usStackDepth is defined as 100, 200 bytes
296
+
* the stack is 16 bits wide and uxStackDepth is defined as 100, 200 bytes
297
297
* will be allocated for stack storage.
298
298
*
299
299
* @param pvParameters Pointer that will be used as the parameter for the task
@@ -348,7 +348,7 @@ typedef enum
348
348
#if ( configSUPPORT_DYNAMIC_ALLOCATION==1 )
349
349
BaseType_txTaskCreate( TaskFunction_tpxTaskCode,
350
350
constchar*constpcName, /*lint !e971 Unqualified char types are allowed for strings and single characters only. */
0 commit comments