File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -630,7 +630,7 @@ typedef void * MessageBufferHandle_t;
630630/**
631631 * message_buffer.h
632632 * <pre>
633- * BaseType_t xMessageBufferIsFull( MessageBufferHandle_t xMessageBuffer ) ) ;
633+ * BaseType_t xMessageBufferIsFull( MessageBufferHandle_t xMessageBuffer );
634634 * </pre>
635635 *
636636 * Tests to see if a message buffer is full. A message buffer is full if it
@@ -648,7 +648,7 @@ typedef void * MessageBufferHandle_t;
648648/**
649649 * message_buffer.h
650650 * <pre>
651- * BaseType_t xMessageBufferIsEmpty( MessageBufferHandle_t xMessageBuffer ) ) ;
651+ * BaseType_t xMessageBufferIsEmpty( MessageBufferHandle_t xMessageBuffer );
652652 * </pre>
653653 *
654654 * Tests to see if a message buffer is empty (does not contain any messages).
@@ -690,7 +690,7 @@ typedef void * MessageBufferHandle_t;
690690/**
691691 * message_buffer.h
692692 * <pre>
693- * size_t xMessageBufferSpaceAvailable( MessageBufferHandle_t xMessageBuffer ) ) ;
693+ * size_t xMessageBufferSpaceAvailable( MessageBufferHandle_t xMessageBuffer );
694694 * </pre>
695695 * Returns the number of bytes of free space in the message buffer.
696696 *
@@ -714,7 +714,7 @@ typedef void * MessageBufferHandle_t;
714714/**
715715 * message_buffer.h
716716 * <pre>
717- * size_t xMessageBufferNextLengthBytes( MessageBufferHandle_t xMessageBuffer ) ) ;
717+ * size_t xMessageBufferNextLengthBytes( MessageBufferHandle_t xMessageBuffer );
718718 * </pre>
719719 * Returns the length (in bytes) of the next message in a message buffer.
720720 * Useful if xMessageBufferReceive() returned 0 because the size of the buffer
You can’t perform that action at this time.
0 commit comments