Change type of usStackDepth to configSTACK_DEPTH_TYPE.

This commit is contained in:
Gaurav Aggarwal 2019-02-21 03:25:30 +00:00
parent 5623c69748
commit 5fe8465a35
4 changed files with 4 additions and 4 deletions

View file

@ -122,7 +122,7 @@ typedef struct xTASK_PARAMETERS
{
TaskFunction_t pvTaskCode;
const char * const pcName; /*lint !e971 Unqualified char types are allowed for strings and single characters only. */
uint16_t usStackDepth;
configSTACK_DEPTH_TYPE usStackDepth;
void *pvParameters;
UBaseType_t uxPriority;
StackType_t *puxStackBuffer;