@@ -155,7 +155,7 @@ typedef struct QueueDefinition * QueueSetMemberHandle_t;
155
155
* QueueHandle_t xQueueCreateStatic(
156
156
* UBaseType_t uxQueueLength,
157
157
* UBaseType_t uxItemSize,
158
- * uint8_t *pucQueueStorageBuffer ,
158
+ * uint8_t *pucQueueStorage ,
159
159
* StaticQueue_t *pxQueueBuffer
160
160
* );
161
161
* </pre>
@@ -182,11 +182,11 @@ typedef struct QueueDefinition * QueueSetMemberHandle_t;
182
182
* that will be copied for each posted item. Each item on the queue must be
183
183
* the same size.
184
184
*
185
- * @param pucQueueStorageBuffer If uxItemSize is not zero then
186
- * pucQueueStorageBuffer must point to a uint8_t array that is at least large
185
+ * @param pucQueueStorage If uxItemSize is not zero then
186
+ * pucQueueStorage must point to a uint8_t array that is at least large
187
187
* enough to hold the maximum number of items that can be in the queue at any
188
188
* one time - which is ( uxQueueLength * uxItemsSize ) bytes. If uxItemSize is
189
- * zero then pucQueueStorageBuffer can be NULL.
189
+ * zero then pucQueueStorage can be NULL.
190
190
*
191
191
* @param pxQueueBuffer Must point to a variable of type StaticQueue_t, which
192
192
* will be used to hold the queue's data structure.
@@ -214,7 +214,7 @@ typedef struct QueueDefinition * QueueSetMemberHandle_t;
214
214
*
215
215
* void vATask( void *pvParameters )
216
216
* {
217
- * QueueHandle_t xQueue1;
217
+ * QueueHandle_t xQueue1;
218
218
*
219
219
* // Create a queue capable of containing 10 uint32_t values.
220
220
* xQueue1 = xQueueCreate( QUEUE_LENGTH, // The number of items the queue can hold.
@@ -1501,7 +1501,7 @@ BaseType_t xQueueGiveMutexRecursive( QueueHandle_t xMutex ) PRIVILEGED_FUNCTION;
1501
1501
* is the handle returned by a call to xQueueCreate(). Semaphore and mutex
1502
1502
* handles can also be passed in here.
1503
1503
*
1504
- * @param pcName The name to be associated with the handle. This is the
1504
+ * @param pcQueueName The name to be associated with the handle. This is the
1505
1505
* name that the kernel aware debugger will display. The queue registry only
1506
1506
* stores a pointer to the string - so the string must be persistent (global or
1507
1507
* preferably in ROM/Flash), not on the stack.
0 commit comments