Skip to content

Commit

Permalink
Merge branch 'ARM_Crx_No_GIC_Demo' of github.com:kar-rahul-aws/FreeRT…
Browse files Browse the repository at this point in the history
…OS into ARM_Crx_No_GIC_Demo
  • Loading branch information
kar-rahul-aws committed Jul 30, 2024
2 parents f321ba7 + 87ec744 commit 3358fbe
Showing 1 changed file with 13 additions and 12 deletions.
25 changes: 13 additions & 12 deletions FreeRTOS/Demo/Common/Minimal/AbortDelay.c
Original file line number Diff line number Diff line change
Expand Up @@ -488,20 +488,21 @@
uint8_t uxRxData;

#if ( configSUPPORT_STATIC_ALLOCATION == 1 )
{
/* Defines the memory that will actually hold the streams within the
* stream buffer. */
static uint8_t ucStorageBuffer[ sizeof( configMESSAGE_BUFFER_LENGTH_TYPE ) + 1 ];

/* The variable used to hold the stream buffer structure. */
/* The variable used to hold the stream buffer structure.
* This control information is valid as long as xStreamBuffer
* is valid. */
StaticStreamBuffer_t xStreamBufferStruct;


xStreamBuffer = xStreamBufferCreateStatic( sizeof( ucStorageBuffer ),
xTriggerLevelBytes,
ucStorageBuffer,
&xStreamBufferStruct );
}
{
/* Defines the memory that will actually hold the streams within the
* stream buffer. */
static uint8_t ucStorageBuffer[ sizeof( configMESSAGE_BUFFER_LENGTH_TYPE ) + 1 ];

xStreamBuffer = xStreamBufferCreateStatic( sizeof( ucStorageBuffer ),
xTriggerLevelBytes,
ucStorageBuffer,
&xStreamBufferStruct );
}
#else /* if ( configSUPPORT_STATIC_ALLOCATION == 1 ) */
{
xStreamBuffer = xStreamBufferCreate( sizeof( uint8_t ), xTriggerLevelBytes );
Expand Down

0 comments on commit 3358fbe

Please sign in to comment.