Skip to content

Commit 7677b4d

Browse files
authored
Merge branch 'main' into main
2 parents f6a2e2e + 1b38078 commit 7677b4d

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

include/message_buffer.h

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -737,7 +737,7 @@ typedef void * MessageBufferHandle_t;
737737
* message_buffer.h
738738
*
739739
* <pre>
740-
* BaseType_t xMessageBufferSendCompletedFromISR( MessageBufferHandle_t xStreamBuffer, BaseType_t *pxHigherPriorityTaskWoken );
740+
* BaseType_t xMessageBufferSendCompletedFromISR( MessageBufferHandle_t xMessageBuffer, BaseType_t *pxHigherPriorityTaskWoken );
741741
* </pre>
742742
*
743743
* For advanced users only.
@@ -753,7 +753,7 @@ typedef void * MessageBufferHandle_t;
753753
* See the example implemented in FreeRTOS/Demo/Minimal/MessageBufferAMP.c for
754754
* additional information.
755755
*
756-
* @param xStreamBuffer The handle of the stream buffer to which data was
756+
* @param xMessageBuffer The handle of the stream buffer to which data was
757757
* written.
758758
*
759759
* @param pxHigherPriorityTaskWoken *pxHigherPriorityTaskWoken should be
@@ -777,7 +777,7 @@ typedef void * MessageBufferHandle_t;
777777
* message_buffer.h
778778
*
779779
* <pre>
780-
* BaseType_t xMessageBufferReceiveCompletedFromISR( MessageBufferHandle_t xStreamBuffer, BaseType_t *pxHigherPriorityTaskWoken );
780+
* BaseType_t xMessageBufferReceiveCompletedFromISR( MessageBufferHandle_t xMessageBuffer, BaseType_t *pxHigherPriorityTaskWoken );
781781
* </pre>
782782
*
783783
* For advanced users only.
@@ -794,7 +794,7 @@ typedef void * MessageBufferHandle_t;
794794
* See the example implemented in FreeRTOS/Demo/Minimal/MessageBufferAMP.c for
795795
* additional information.
796796
*
797-
* @param xStreamBuffer The handle of the stream buffer from which data was
797+
* @param xMessageBuffer The handle of the stream buffer from which data was
798798
* read.
799799
*
800800
* @param pxHigherPriorityTaskWoken *pxHigherPriorityTaskWoken should be

0 commit comments

Comments
 (0)