We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 715ec74 commit b41e99cCopy full SHA for b41e99c
include/FreeRTOS.h
@@ -1001,6 +1001,10 @@
1001
#define traceSTREAM_BUFFER_RESET( xStreamBuffer )
1002
#endif
1003
1004
+#ifndef traceSTREAM_BUFFER_RESET_FROM_ISR
1005
+ #define traceSTREAM_BUFFER_RESET_FROM_ISR( xStreamBuffer )
1006
+#endif
1007
+
1008
#ifndef traceBLOCKING_ON_STREAM_BUFFER_SEND
1009
#define traceBLOCKING_ON_STREAM_BUFFER_SEND( xStreamBuffer )
1010
stream_buffer.c
@@ -688,7 +688,7 @@ BaseType_t xStreamBufferResetFromISR( StreamBufferHandle_t xStreamBuffer )
688
}
689
690
691
- traceSTREAM_BUFFER_RESET( xStreamBuffer );
+ traceSTREAM_BUFFER_RESET_FROM_ISR( xStreamBuffer );
692
693
xReturn = pdPASS;
694
0 commit comments