mirror of
https://github.com/FreeRTOS/FreeRTOS-Kernel.git
synced 2025-04-19 21:11:57 -04:00
Add config option for event groups and stream buffers (#994)
* Add configUSE_EVENT_GROUPS in source files * Add configUSE_EVENT_GROUPS macro in MPU wrapper files * Add configUSE_EVENT_GROUPS macro in MPU port files for GCC and RVDS compilers * Fix Formatting * Add configUSE_STREAM_BUFFERS in source files * Add configUSE_STREAM_BUFFERS macro in MPU wrapper files * Add configUSE_STREAM_BUFFERS macro in MPU port files for GCC and RVDS compilers * Update FreeRTOS.h post latest commit * Update the ARM_CRx_MPU Port to account for the new configuration changes * Formatting suggestions Signed-off-by: Gaurav Aggarwal <aggarg@amazon.com> * Code review suggestions --------- Signed-off-by: Gaurav Aggarwal <aggarg@amazon.com> Co-authored-by: joshzarr <joshzarr@amazon.com> Co-authored-by: Gaurav Aggarwal <aggarg@amazon.com> Co-authored-by: Soren Ptak <ptaksoren@gmail.com> Co-authored-by: Gaurav-Aggarwal-AWS <33462878+aggarg@users.noreply.github.com>
This commit is contained in:
parent
39dbff7204
commit
e8289dfee6
101
event_groups.c
101
event_groups.c
|
@ -45,8 +45,14 @@
|
||||||
* correct privileged Vs unprivileged linkage and placement. */
|
* correct privileged Vs unprivileged linkage and placement. */
|
||||||
#undef MPU_WRAPPERS_INCLUDED_FROM_API_FILE
|
#undef MPU_WRAPPERS_INCLUDED_FROM_API_FILE
|
||||||
|
|
||||||
typedef struct EventGroupDef_t
|
/* This entire source file will be skipped if the application is not configured
|
||||||
{
|
* to include event groups functionality. This #if is closed at the very bottom
|
||||||
|
* of this file. If you want to include event groups then ensure
|
||||||
|
* configUSE_EVENT_GROUPS is set to 1 in FreeRTOSConfig.h. */
|
||||||
|
#if ( configUSE_EVENT_GROUPS == 1 )
|
||||||
|
|
||||||
|
typedef struct EventGroupDef_t
|
||||||
|
{
|
||||||
EventBits_t uxEventBits;
|
EventBits_t uxEventBits;
|
||||||
List_t xTasksWaitingForBits; /**< List of tasks waiting for a bit to be set. */
|
List_t xTasksWaitingForBits; /**< List of tasks waiting for a bit to be set. */
|
||||||
|
|
||||||
|
@ -57,7 +63,7 @@ typedef struct EventGroupDef_t
|
||||||
#if ( ( configSUPPORT_STATIC_ALLOCATION == 1 ) && ( configSUPPORT_DYNAMIC_ALLOCATION == 1 ) )
|
#if ( ( configSUPPORT_STATIC_ALLOCATION == 1 ) && ( configSUPPORT_DYNAMIC_ALLOCATION == 1 ) )
|
||||||
uint8_t ucStaticallyAllocated; /**< Set to pdTRUE if the event group is statically allocated to ensure no attempt is made to free the memory. */
|
uint8_t ucStaticallyAllocated; /**< Set to pdTRUE if the event group is statically allocated to ensure no attempt is made to free the memory. */
|
||||||
#endif
|
#endif
|
||||||
} EventGroup_t;
|
} EventGroup_t;
|
||||||
|
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
|
@ -69,13 +75,13 @@ typedef struct EventGroupDef_t
|
||||||
* wait condition is met if any of the bits set in uxBitsToWait for are also set
|
* wait condition is met if any of the bits set in uxBitsToWait for are also set
|
||||||
* in uxCurrentEventBits.
|
* in uxCurrentEventBits.
|
||||||
*/
|
*/
|
||||||
static BaseType_t prvTestWaitCondition( const EventBits_t uxCurrentEventBits,
|
static BaseType_t prvTestWaitCondition( const EventBits_t uxCurrentEventBits,
|
||||||
const EventBits_t uxBitsToWaitFor,
|
const EventBits_t uxBitsToWaitFor,
|
||||||
const BaseType_t xWaitForAllBits ) PRIVILEGED_FUNCTION;
|
const BaseType_t xWaitForAllBits ) PRIVILEGED_FUNCTION;
|
||||||
|
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
#if ( configSUPPORT_STATIC_ALLOCATION == 1 )
|
#if ( configSUPPORT_STATIC_ALLOCATION == 1 )
|
||||||
|
|
||||||
EventGroupHandle_t xEventGroupCreateStatic( StaticEventGroup_t * pxEventGroupBuffer )
|
EventGroupHandle_t xEventGroupCreateStatic( StaticEventGroup_t * pxEventGroupBuffer )
|
||||||
{
|
{
|
||||||
|
@ -131,10 +137,10 @@ static BaseType_t prvTestWaitCondition( const EventBits_t uxCurrentEventBits,
|
||||||
return pxEventBits;
|
return pxEventBits;
|
||||||
}
|
}
|
||||||
|
|
||||||
#endif /* configSUPPORT_STATIC_ALLOCATION */
|
#endif /* configSUPPORT_STATIC_ALLOCATION */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
#if ( configSUPPORT_DYNAMIC_ALLOCATION == 1 )
|
#if ( configSUPPORT_DYNAMIC_ALLOCATION == 1 )
|
||||||
|
|
||||||
EventGroupHandle_t xEventGroupCreate( void )
|
EventGroupHandle_t xEventGroupCreate( void )
|
||||||
{
|
{
|
||||||
|
@ -173,14 +179,14 @@ static BaseType_t prvTestWaitCondition( const EventBits_t uxCurrentEventBits,
|
||||||
return pxEventBits;
|
return pxEventBits;
|
||||||
}
|
}
|
||||||
|
|
||||||
#endif /* configSUPPORT_DYNAMIC_ALLOCATION */
|
#endif /* configSUPPORT_DYNAMIC_ALLOCATION */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
EventBits_t xEventGroupSync( EventGroupHandle_t xEventGroup,
|
EventBits_t xEventGroupSync( EventGroupHandle_t xEventGroup,
|
||||||
const EventBits_t uxBitsToSet,
|
const EventBits_t uxBitsToSet,
|
||||||
const EventBits_t uxBitsToWaitFor,
|
const EventBits_t uxBitsToWaitFor,
|
||||||
TickType_t xTicksToWait )
|
TickType_t xTicksToWait )
|
||||||
{
|
{
|
||||||
EventBits_t uxOriginalBitValue, uxReturn;
|
EventBits_t uxOriginalBitValue, uxReturn;
|
||||||
EventGroup_t * pxEventBits = xEventGroup;
|
EventGroup_t * pxEventBits = xEventGroup;
|
||||||
BaseType_t xAlreadyYielded;
|
BaseType_t xAlreadyYielded;
|
||||||
|
@ -300,15 +306,15 @@ EventBits_t xEventGroupSync( EventGroupHandle_t xEventGroup,
|
||||||
traceRETURN_xEventGroupSync( uxReturn );
|
traceRETURN_xEventGroupSync( uxReturn );
|
||||||
|
|
||||||
return uxReturn;
|
return uxReturn;
|
||||||
}
|
}
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
EventBits_t xEventGroupWaitBits( EventGroupHandle_t xEventGroup,
|
EventBits_t xEventGroupWaitBits( EventGroupHandle_t xEventGroup,
|
||||||
const EventBits_t uxBitsToWaitFor,
|
const EventBits_t uxBitsToWaitFor,
|
||||||
const BaseType_t xClearOnExit,
|
const BaseType_t xClearOnExit,
|
||||||
const BaseType_t xWaitForAllBits,
|
const BaseType_t xWaitForAllBits,
|
||||||
TickType_t xTicksToWait )
|
TickType_t xTicksToWait )
|
||||||
{
|
{
|
||||||
EventGroup_t * pxEventBits = xEventGroup;
|
EventGroup_t * pxEventBits = xEventGroup;
|
||||||
EventBits_t uxReturn, uxControlBits = 0;
|
EventBits_t uxReturn, uxControlBits = 0;
|
||||||
BaseType_t xWaitConditionMet, xAlreadyYielded;
|
BaseType_t xWaitConditionMet, xAlreadyYielded;
|
||||||
|
@ -460,12 +466,12 @@ EventBits_t xEventGroupWaitBits( EventGroupHandle_t xEventGroup,
|
||||||
traceRETURN_xEventGroupWaitBits( uxReturn );
|
traceRETURN_xEventGroupWaitBits( uxReturn );
|
||||||
|
|
||||||
return uxReturn;
|
return uxReturn;
|
||||||
}
|
}
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
EventBits_t xEventGroupClearBits( EventGroupHandle_t xEventGroup,
|
EventBits_t xEventGroupClearBits( EventGroupHandle_t xEventGroup,
|
||||||
const EventBits_t uxBitsToClear )
|
const EventBits_t uxBitsToClear )
|
||||||
{
|
{
|
||||||
EventGroup_t * pxEventBits = xEventGroup;
|
EventGroup_t * pxEventBits = xEventGroup;
|
||||||
EventBits_t uxReturn;
|
EventBits_t uxReturn;
|
||||||
|
|
||||||
|
@ -492,10 +498,10 @@ EventBits_t xEventGroupClearBits( EventGroupHandle_t xEventGroup,
|
||||||
traceRETURN_xEventGroupClearBits( uxReturn );
|
traceRETURN_xEventGroupClearBits( uxReturn );
|
||||||
|
|
||||||
return uxReturn;
|
return uxReturn;
|
||||||
}
|
}
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
#if ( ( configUSE_TRACE_FACILITY == 1 ) && ( INCLUDE_xTimerPendFunctionCall == 1 ) && ( configUSE_TIMERS == 1 ) )
|
#if ( ( configUSE_TRACE_FACILITY == 1 ) && ( INCLUDE_xTimerPendFunctionCall == 1 ) && ( configUSE_TIMERS == 1 ) )
|
||||||
|
|
||||||
BaseType_t xEventGroupClearBitsFromISR( EventGroupHandle_t xEventGroup,
|
BaseType_t xEventGroupClearBitsFromISR( EventGroupHandle_t xEventGroup,
|
||||||
const EventBits_t uxBitsToClear )
|
const EventBits_t uxBitsToClear )
|
||||||
|
@ -512,11 +518,11 @@ EventBits_t xEventGroupClearBits( EventGroupHandle_t xEventGroup,
|
||||||
return xReturn;
|
return xReturn;
|
||||||
}
|
}
|
||||||
|
|
||||||
#endif /* if ( ( configUSE_TRACE_FACILITY == 1 ) && ( INCLUDE_xTimerPendFunctionCall == 1 ) && ( configUSE_TIMERS == 1 ) ) */
|
#endif /* if ( ( configUSE_TRACE_FACILITY == 1 ) && ( INCLUDE_xTimerPendFunctionCall == 1 ) && ( configUSE_TIMERS == 1 ) ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
EventBits_t xEventGroupGetBitsFromISR( EventGroupHandle_t xEventGroup )
|
EventBits_t xEventGroupGetBitsFromISR( EventGroupHandle_t xEventGroup )
|
||||||
{
|
{
|
||||||
UBaseType_t uxSavedInterruptStatus;
|
UBaseType_t uxSavedInterruptStatus;
|
||||||
EventGroup_t const * const pxEventBits = xEventGroup;
|
EventGroup_t const * const pxEventBits = xEventGroup;
|
||||||
EventBits_t uxReturn;
|
EventBits_t uxReturn;
|
||||||
|
@ -532,12 +538,12 @@ EventBits_t xEventGroupGetBitsFromISR( EventGroupHandle_t xEventGroup )
|
||||||
traceRETURN_xEventGroupGetBitsFromISR( uxReturn );
|
traceRETURN_xEventGroupGetBitsFromISR( uxReturn );
|
||||||
|
|
||||||
return uxReturn;
|
return uxReturn;
|
||||||
}
|
}
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
EventBits_t xEventGroupSetBits( EventGroupHandle_t xEventGroup,
|
EventBits_t xEventGroupSetBits( EventGroupHandle_t xEventGroup,
|
||||||
const EventBits_t uxBitsToSet )
|
const EventBits_t uxBitsToSet )
|
||||||
{
|
{
|
||||||
ListItem_t * pxListItem;
|
ListItem_t * pxListItem;
|
||||||
ListItem_t * pxNext;
|
ListItem_t * pxNext;
|
||||||
ListItem_t const * pxListEnd;
|
ListItem_t const * pxListEnd;
|
||||||
|
@ -632,11 +638,11 @@ EventBits_t xEventGroupSetBits( EventGroupHandle_t xEventGroup,
|
||||||
traceRETURN_xEventGroupSetBits( pxEventBits->uxEventBits );
|
traceRETURN_xEventGroupSetBits( pxEventBits->uxEventBits );
|
||||||
|
|
||||||
return pxEventBits->uxEventBits;
|
return pxEventBits->uxEventBits;
|
||||||
}
|
}
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
void vEventGroupDelete( EventGroupHandle_t xEventGroup )
|
void vEventGroupDelete( EventGroupHandle_t xEventGroup )
|
||||||
{
|
{
|
||||||
EventGroup_t * pxEventBits = xEventGroup;
|
EventGroup_t * pxEventBits = xEventGroup;
|
||||||
const List_t * pxTasksWaitingForBits;
|
const List_t * pxTasksWaitingForBits;
|
||||||
|
|
||||||
|
@ -682,10 +688,10 @@ void vEventGroupDelete( EventGroupHandle_t xEventGroup )
|
||||||
#endif /* configSUPPORT_DYNAMIC_ALLOCATION */
|
#endif /* configSUPPORT_DYNAMIC_ALLOCATION */
|
||||||
|
|
||||||
traceRETURN_vEventGroupDelete();
|
traceRETURN_vEventGroupDelete();
|
||||||
}
|
}
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
#if ( configSUPPORT_STATIC_ALLOCATION == 1 )
|
#if ( configSUPPORT_STATIC_ALLOCATION == 1 )
|
||||||
BaseType_t xEventGroupGetStaticBuffer( EventGroupHandle_t xEventGroup,
|
BaseType_t xEventGroupGetStaticBuffer( EventGroupHandle_t xEventGroup,
|
||||||
StaticEventGroup_t ** ppxEventGroupBuffer )
|
StaticEventGroup_t ** ppxEventGroupBuffer )
|
||||||
{
|
{
|
||||||
|
@ -728,14 +734,14 @@ void vEventGroupDelete( EventGroupHandle_t xEventGroup )
|
||||||
|
|
||||||
return xReturn;
|
return xReturn;
|
||||||
}
|
}
|
||||||
#endif /* configSUPPORT_STATIC_ALLOCATION */
|
#endif /* configSUPPORT_STATIC_ALLOCATION */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
/* For internal use only - execute a 'set bits' command that was pended from
|
/* For internal use only - execute a 'set bits' command that was pended from
|
||||||
* an interrupt. */
|
* an interrupt. */
|
||||||
void vEventGroupSetBitsCallback( void * pvEventGroup,
|
void vEventGroupSetBitsCallback( void * pvEventGroup,
|
||||||
uint32_t ulBitsToSet )
|
uint32_t ulBitsToSet )
|
||||||
{
|
{
|
||||||
traceENTER_vEventGroupSetBitsCallback( pvEventGroup, ulBitsToSet );
|
traceENTER_vEventGroupSetBitsCallback( pvEventGroup, ulBitsToSet );
|
||||||
|
|
||||||
/* MISRA Ref 11.5.4 [Callback function parameter] */
|
/* MISRA Ref 11.5.4 [Callback function parameter] */
|
||||||
|
@ -744,14 +750,14 @@ void vEventGroupSetBitsCallback( void * pvEventGroup,
|
||||||
( void ) xEventGroupSetBits( pvEventGroup, ( EventBits_t ) ulBitsToSet );
|
( void ) xEventGroupSetBits( pvEventGroup, ( EventBits_t ) ulBitsToSet );
|
||||||
|
|
||||||
traceRETURN_vEventGroupSetBitsCallback();
|
traceRETURN_vEventGroupSetBitsCallback();
|
||||||
}
|
}
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
/* For internal use only - execute a 'clear bits' command that was pended from
|
/* For internal use only - execute a 'clear bits' command that was pended from
|
||||||
* an interrupt. */
|
* an interrupt. */
|
||||||
void vEventGroupClearBitsCallback( void * pvEventGroup,
|
void vEventGroupClearBitsCallback( void * pvEventGroup,
|
||||||
uint32_t ulBitsToClear )
|
uint32_t ulBitsToClear )
|
||||||
{
|
{
|
||||||
traceENTER_vEventGroupClearBitsCallback( pvEventGroup, ulBitsToClear );
|
traceENTER_vEventGroupClearBitsCallback( pvEventGroup, ulBitsToClear );
|
||||||
|
|
||||||
/* MISRA Ref 11.5.4 [Callback function parameter] */
|
/* MISRA Ref 11.5.4 [Callback function parameter] */
|
||||||
|
@ -760,13 +766,13 @@ void vEventGroupClearBitsCallback( void * pvEventGroup,
|
||||||
( void ) xEventGroupClearBits( pvEventGroup, ( EventBits_t ) ulBitsToClear );
|
( void ) xEventGroupClearBits( pvEventGroup, ( EventBits_t ) ulBitsToClear );
|
||||||
|
|
||||||
traceRETURN_vEventGroupClearBitsCallback();
|
traceRETURN_vEventGroupClearBitsCallback();
|
||||||
}
|
}
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
static BaseType_t prvTestWaitCondition( const EventBits_t uxCurrentEventBits,
|
static BaseType_t prvTestWaitCondition( const EventBits_t uxCurrentEventBits,
|
||||||
const EventBits_t uxBitsToWaitFor,
|
const EventBits_t uxBitsToWaitFor,
|
||||||
const BaseType_t xWaitForAllBits )
|
const BaseType_t xWaitForAllBits )
|
||||||
{
|
{
|
||||||
BaseType_t xWaitConditionMet = pdFALSE;
|
BaseType_t xWaitConditionMet = pdFALSE;
|
||||||
|
|
||||||
if( xWaitForAllBits == pdFALSE )
|
if( xWaitForAllBits == pdFALSE )
|
||||||
|
@ -797,10 +803,10 @@ static BaseType_t prvTestWaitCondition( const EventBits_t uxCurrentEventBits,
|
||||||
}
|
}
|
||||||
|
|
||||||
return xWaitConditionMet;
|
return xWaitConditionMet;
|
||||||
}
|
}
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
#if ( ( configUSE_TRACE_FACILITY == 1 ) && ( INCLUDE_xTimerPendFunctionCall == 1 ) && ( configUSE_TIMERS == 1 ) )
|
#if ( ( configUSE_TRACE_FACILITY == 1 ) && ( INCLUDE_xTimerPendFunctionCall == 1 ) && ( configUSE_TIMERS == 1 ) )
|
||||||
|
|
||||||
BaseType_t xEventGroupSetBitsFromISR( EventGroupHandle_t xEventGroup,
|
BaseType_t xEventGroupSetBitsFromISR( EventGroupHandle_t xEventGroup,
|
||||||
const EventBits_t uxBitsToSet,
|
const EventBits_t uxBitsToSet,
|
||||||
|
@ -818,10 +824,10 @@ static BaseType_t prvTestWaitCondition( const EventBits_t uxCurrentEventBits,
|
||||||
return xReturn;
|
return xReturn;
|
||||||
}
|
}
|
||||||
|
|
||||||
#endif /* if ( ( configUSE_TRACE_FACILITY == 1 ) && ( INCLUDE_xTimerPendFunctionCall == 1 ) && ( configUSE_TIMERS == 1 ) ) */
|
#endif /* if ( ( configUSE_TRACE_FACILITY == 1 ) && ( INCLUDE_xTimerPendFunctionCall == 1 ) && ( configUSE_TIMERS == 1 ) ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
#if ( configUSE_TRACE_FACILITY == 1 )
|
#if ( configUSE_TRACE_FACILITY == 1 )
|
||||||
|
|
||||||
UBaseType_t uxEventGroupGetNumber( void * xEventGroup )
|
UBaseType_t uxEventGroupGetNumber( void * xEventGroup )
|
||||||
{
|
{
|
||||||
|
@ -848,10 +854,10 @@ static BaseType_t prvTestWaitCondition( const EventBits_t uxCurrentEventBits,
|
||||||
return xReturn;
|
return xReturn;
|
||||||
}
|
}
|
||||||
|
|
||||||
#endif /* configUSE_TRACE_FACILITY */
|
#endif /* configUSE_TRACE_FACILITY */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
#if ( configUSE_TRACE_FACILITY == 1 )
|
#if ( configUSE_TRACE_FACILITY == 1 )
|
||||||
|
|
||||||
void vEventGroupSetNumber( void * xEventGroup,
|
void vEventGroupSetNumber( void * xEventGroup,
|
||||||
UBaseType_t uxEventGroupNumber )
|
UBaseType_t uxEventGroupNumber )
|
||||||
|
@ -866,5 +872,10 @@ static BaseType_t prvTestWaitCondition( const EventBits_t uxCurrentEventBits,
|
||||||
traceRETURN_vEventGroupSetNumber();
|
traceRETURN_vEventGroupSetNumber();
|
||||||
}
|
}
|
||||||
|
|
||||||
#endif /* configUSE_TRACE_FACILITY */
|
#endif /* configUSE_TRACE_FACILITY */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
|
/* This entire source file will be skipped if the application is not configured
|
||||||
|
* to include event groups functionality. If you want to include event groups
|
||||||
|
* then ensure configUSE_EVENT_GROUPS is set to 1 in FreeRTOSConfig.h. */
|
||||||
|
#endif /* configUSE_EVENT_GROUPS == 1 */
|
||||||
|
|
|
@ -318,6 +318,14 @@
|
||||||
#define configUSE_TIMERS 0
|
#define configUSE_TIMERS 0
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#ifndef configUSE_EVENT_GROUPS
|
||||||
|
#define configUSE_EVENT_GROUPS 1
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#ifndef configUSE_STREAM_BUFFERS
|
||||||
|
#define configUSE_STREAM_BUFFERS 1
|
||||||
|
#endif
|
||||||
|
|
||||||
#ifndef configUSE_DAEMON_TASK_STARTUP_HOOK
|
#ifndef configUSE_DAEMON_TASK_STARTUP_HOOK
|
||||||
#define configUSE_DAEMON_TASK_STARTUP_HOOK 0
|
#define configUSE_DAEMON_TASK_STARTUP_HOOK 0
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -139,6 +139,9 @@ typedef TickType_t EventBits_t;
|
||||||
* each event group has 56 usable bits (bit 0 to bit 53). The EventBits_t type
|
* each event group has 56 usable bits (bit 0 to bit 53). The EventBits_t type
|
||||||
* is used to store event bits within an event group.
|
* is used to store event bits within an event group.
|
||||||
*
|
*
|
||||||
|
* The configUSE_EVENT_GROUPS configuration constant must be set to 1 for xEventGroupCreate()
|
||||||
|
* to be available.
|
||||||
|
*
|
||||||
* @return If the event group was created then a handle to the event group is
|
* @return If the event group was created then a handle to the event group is
|
||||||
* returned. If there was insufficient FreeRTOS heap available to create the
|
* returned. If there was insufficient FreeRTOS heap available to create the
|
||||||
* event group then NULL is returned. See https://www.FreeRTOS.org/a00111.html
|
* event group then NULL is returned. See https://www.FreeRTOS.org/a00111.html
|
||||||
|
@ -196,6 +199,9 @@ typedef TickType_t EventBits_t;
|
||||||
* each event group has 56 usable bits (bit 0 to bit 53). The EventBits_t type
|
* each event group has 56 usable bits (bit 0 to bit 53). The EventBits_t type
|
||||||
* is used to store event bits within an event group.
|
* is used to store event bits within an event group.
|
||||||
*
|
*
|
||||||
|
* The configUSE_EVENT_GROUPS configuration constant must be set to 1 for xEventGroupCreateStatic()
|
||||||
|
* to be available.
|
||||||
|
*
|
||||||
* @param pxEventGroupBuffer pxEventGroupBuffer must point to a variable of type
|
* @param pxEventGroupBuffer pxEventGroupBuffer must point to a variable of type
|
||||||
* StaticEventGroup_t, which will be then be used to hold the event group's data
|
* StaticEventGroup_t, which will be then be used to hold the event group's data
|
||||||
* structures, removing the need for the memory to be allocated dynamically.
|
* structures, removing the need for the memory to be allocated dynamically.
|
||||||
|
@ -238,6 +244,9 @@ typedef TickType_t EventBits_t;
|
||||||
*
|
*
|
||||||
* This function cannot be called from an interrupt.
|
* This function cannot be called from an interrupt.
|
||||||
*
|
*
|
||||||
|
* The configUSE_EVENT_GROUPS configuration constant must be set to 1 for xEventGroupWaitBits()
|
||||||
|
* to be available.
|
||||||
|
*
|
||||||
* @param xEventGroup The event group in which the bits are being tested. The
|
* @param xEventGroup The event group in which the bits are being tested. The
|
||||||
* event group must have previously been created using a call to
|
* event group must have previously been created using a call to
|
||||||
* xEventGroupCreate().
|
* xEventGroupCreate().
|
||||||
|
@ -331,6 +340,9 @@ EventBits_t xEventGroupWaitBits( EventGroupHandle_t xEventGroup,
|
||||||
* Clear bits within an event group. This function cannot be called from an
|
* Clear bits within an event group. This function cannot be called from an
|
||||||
* interrupt.
|
* interrupt.
|
||||||
*
|
*
|
||||||
|
* The configUSE_EVENT_GROUPS configuration constant must be set to 1 for xEventGroupClearBits()
|
||||||
|
* to be available.
|
||||||
|
*
|
||||||
* @param xEventGroup The event group in which the bits are to be cleared.
|
* @param xEventGroup The event group in which the bits are to be cleared.
|
||||||
*
|
*
|
||||||
* @param uxBitsToClear A bitwise value that indicates the bit or bits to clear
|
* @param uxBitsToClear A bitwise value that indicates the bit or bits to clear
|
||||||
|
@ -461,6 +473,9 @@ EventBits_t xEventGroupClearBits( EventGroupHandle_t xEventGroup,
|
||||||
* Setting bits in an event group will automatically unblock tasks that are
|
* Setting bits in an event group will automatically unblock tasks that are
|
||||||
* blocked waiting for the bits.
|
* blocked waiting for the bits.
|
||||||
*
|
*
|
||||||
|
* The configUSE_EVENT_GROUPS configuration constant must be set to 1 for xEventGroupSetBits()
|
||||||
|
* to be available.
|
||||||
|
*
|
||||||
* @param xEventGroup The event group in which the bits are to be set.
|
* @param xEventGroup The event group in which the bits are to be set.
|
||||||
*
|
*
|
||||||
* @param uxBitsToSet A bitwise value that indicates the bit or bits to set.
|
* @param uxBitsToSet A bitwise value that indicates the bit or bits to set.
|
||||||
|
@ -625,6 +640,9 @@ EventBits_t xEventGroupSetBits( EventGroupHandle_t xEventGroup,
|
||||||
* this case all the bits specified by uxBitsToWait will be automatically
|
* this case all the bits specified by uxBitsToWait will be automatically
|
||||||
* cleared before the function returns.
|
* cleared before the function returns.
|
||||||
*
|
*
|
||||||
|
* The configUSE_EVENT_GROUPS configuration constant must be set to 1 for xEventGroupSync()
|
||||||
|
* to be available.
|
||||||
|
*
|
||||||
* @param xEventGroup The event group in which the bits are being tested. The
|
* @param xEventGroup The event group in which the bits are being tested. The
|
||||||
* event group must have previously been created using a call to
|
* event group must have previously been created using a call to
|
||||||
* xEventGroupCreate().
|
* xEventGroupCreate().
|
||||||
|
@ -743,6 +761,9 @@ EventBits_t xEventGroupSync( EventGroupHandle_t xEventGroup,
|
||||||
* Returns the current value of the bits in an event group. This function
|
* Returns the current value of the bits in an event group. This function
|
||||||
* cannot be used from an interrupt.
|
* cannot be used from an interrupt.
|
||||||
*
|
*
|
||||||
|
* The configUSE_EVENT_GROUPS configuration constant must be set to 1 for xEventGroupGetBits()
|
||||||
|
* to be available.
|
||||||
|
*
|
||||||
* @param xEventGroup The event group being queried.
|
* @param xEventGroup The event group being queried.
|
||||||
*
|
*
|
||||||
* @return The event group bits at the time xEventGroupGetBits() was called.
|
* @return The event group bits at the time xEventGroupGetBits() was called.
|
||||||
|
@ -760,6 +781,9 @@ EventBits_t xEventGroupSync( EventGroupHandle_t xEventGroup,
|
||||||
*
|
*
|
||||||
* A version of xEventGroupGetBits() that can be called from an ISR.
|
* A version of xEventGroupGetBits() that can be called from an ISR.
|
||||||
*
|
*
|
||||||
|
* The configUSE_EVENT_GROUPS configuration constant must be set to 1 for xEventGroupGetBitsFromISR()
|
||||||
|
* to be available.
|
||||||
|
*
|
||||||
* @param xEventGroup The event group being queried.
|
* @param xEventGroup The event group being queried.
|
||||||
*
|
*
|
||||||
* @return The event group bits at the time xEventGroupGetBitsFromISR() was called.
|
* @return The event group bits at the time xEventGroupGetBitsFromISR() was called.
|
||||||
|
@ -779,6 +803,9 @@ EventBits_t xEventGroupGetBitsFromISR( EventGroupHandle_t xEventGroup ) PRIVILEG
|
||||||
* xEventGroupCreate(). Tasks that are blocked on the event group will be
|
* xEventGroupCreate(). Tasks that are blocked on the event group will be
|
||||||
* unblocked and obtain 0 as the event group's value.
|
* unblocked and obtain 0 as the event group's value.
|
||||||
*
|
*
|
||||||
|
* The configUSE_EVENT_GROUPS configuration constant must be set to 1 for vEventGroupDelete()
|
||||||
|
* to be available.
|
||||||
|
*
|
||||||
* @param xEventGroup The event group being deleted.
|
* @param xEventGroup The event group being deleted.
|
||||||
*/
|
*/
|
||||||
void vEventGroupDelete( EventGroupHandle_t xEventGroup ) PRIVILEGED_FUNCTION;
|
void vEventGroupDelete( EventGroupHandle_t xEventGroup ) PRIVILEGED_FUNCTION;
|
||||||
|
@ -793,6 +820,9 @@ void vEventGroupDelete( EventGroupHandle_t xEventGroup ) PRIVILEGED_FUNCTION;
|
||||||
* Retrieve a pointer to a statically created event groups's data structure
|
* Retrieve a pointer to a statically created event groups's data structure
|
||||||
* buffer. It is the same buffer that is supplied at the time of creation.
|
* buffer. It is the same buffer that is supplied at the time of creation.
|
||||||
*
|
*
|
||||||
|
* The configUSE_EVENT_GROUPS configuration constant must be set to 1 for xEventGroupGetStaticBuffer()
|
||||||
|
* to be available.
|
||||||
|
*
|
||||||
* @param xEventGroup The event group for which to retrieve the buffer.
|
* @param xEventGroup The event group for which to retrieve the buffer.
|
||||||
*
|
*
|
||||||
* @param ppxEventGroupBuffer Used to return a pointer to the event groups's
|
* @param ppxEventGroupBuffer Used to return a pointer to the event groups's
|
||||||
|
|
|
@ -100,6 +100,8 @@ typedef StreamBufferHandle_t MessageBufferHandle_t;
|
||||||
*
|
*
|
||||||
* configSUPPORT_DYNAMIC_ALLOCATION must be set to 1 or left undefined in
|
* configSUPPORT_DYNAMIC_ALLOCATION must be set to 1 or left undefined in
|
||||||
* FreeRTOSConfig.h for xMessageBufferCreate() to be available.
|
* FreeRTOSConfig.h for xMessageBufferCreate() to be available.
|
||||||
|
* configUSE_STREAM_BUFFERS must be set to 1 in for FreeRTOSConfig.h for
|
||||||
|
* xMessageBufferCreate() to be available.
|
||||||
*
|
*
|
||||||
* @param xBufferSizeBytes The total number of bytes (not messages) the message
|
* @param xBufferSizeBytes The total number of bytes (not messages) the message
|
||||||
* buffer will be able to hold at any one time. When a message is written to
|
* buffer will be able to hold at any one time. When a message is written to
|
||||||
|
@ -174,6 +176,9 @@ typedef StreamBufferHandle_t MessageBufferHandle_t;
|
||||||
* Creates a new message buffer using statically allocated memory. See
|
* Creates a new message buffer using statically allocated memory. See
|
||||||
* xMessageBufferCreate() for a version that uses dynamically allocated memory.
|
* xMessageBufferCreate() for a version that uses dynamically allocated memory.
|
||||||
*
|
*
|
||||||
|
* configUSE_STREAM_BUFFERS must be set to 1 in for FreeRTOSConfig.h for
|
||||||
|
* xMessageBufferCreateStatic() to be available.
|
||||||
|
*
|
||||||
* @param xBufferSizeBytes The size, in bytes, of the buffer pointed to by the
|
* @param xBufferSizeBytes The size, in bytes, of the buffer pointed to by the
|
||||||
* pucMessageBufferStorageArea parameter. When a message is written to the
|
* pucMessageBufferStorageArea parameter. When a message is written to the
|
||||||
* message buffer an additional sizeof( size_t ) bytes are also written to store
|
* message buffer an additional sizeof( size_t ) bytes are also written to store
|
||||||
|
@ -258,6 +263,9 @@ typedef StreamBufferHandle_t MessageBufferHandle_t;
|
||||||
* buffer and storage area buffer. These are the same buffers that are supplied
|
* buffer and storage area buffer. These are the same buffers that are supplied
|
||||||
* at the time of creation.
|
* at the time of creation.
|
||||||
*
|
*
|
||||||
|
* configUSE_STREAM_BUFFERS must be set to 1 in for FreeRTOSConfig.h for
|
||||||
|
* xMessageBufferGetStaticBuffers() to be available.
|
||||||
|
*
|
||||||
* @param xMessageBuffer The message buffer for which to retrieve the buffers.
|
* @param xMessageBuffer The message buffer for which to retrieve the buffers.
|
||||||
*
|
*
|
||||||
* @param ppucMessageBufferStorageArea Used to return a pointer to the
|
* @param ppucMessageBufferStorageArea Used to return a pointer to the
|
||||||
|
@ -309,6 +317,9 @@ typedef StreamBufferHandle_t MessageBufferHandle_t;
|
||||||
* xMessageBufferSendFromISR() to write to a message buffer from an interrupt
|
* xMessageBufferSendFromISR() to write to a message buffer from an interrupt
|
||||||
* service routine (ISR).
|
* service routine (ISR).
|
||||||
*
|
*
|
||||||
|
* configUSE_STREAM_BUFFERS must be set to 1 in for FreeRTOSConfig.h for
|
||||||
|
* xMessageBufferSend() to be available.
|
||||||
|
*
|
||||||
* @param xMessageBuffer The handle of the message buffer to which a message is
|
* @param xMessageBuffer The handle of the message buffer to which a message is
|
||||||
* being sent.
|
* being sent.
|
||||||
*
|
*
|
||||||
|
@ -409,6 +420,9 @@ typedef StreamBufferHandle_t MessageBufferHandle_t;
|
||||||
* xMessageBufferSendFromISR() to write to a message buffer from an interrupt
|
* xMessageBufferSendFromISR() to write to a message buffer from an interrupt
|
||||||
* service routine (ISR).
|
* service routine (ISR).
|
||||||
*
|
*
|
||||||
|
* configUSE_STREAM_BUFFERS must be set to 1 in for FreeRTOSConfig.h for
|
||||||
|
* xMessageBufferSendFromISR() to be available.
|
||||||
|
*
|
||||||
* @param xMessageBuffer The handle of the message buffer to which a message is
|
* @param xMessageBuffer The handle of the message buffer to which a message is
|
||||||
* being sent.
|
* being sent.
|
||||||
*
|
*
|
||||||
|
@ -513,6 +527,9 @@ typedef StreamBufferHandle_t MessageBufferHandle_t;
|
||||||
* xMessageBufferReceiveFromISR() to read from a message buffer from an
|
* xMessageBufferReceiveFromISR() to read from a message buffer from an
|
||||||
* interrupt service routine (ISR).
|
* interrupt service routine (ISR).
|
||||||
*
|
*
|
||||||
|
* configUSE_STREAM_BUFFERS must be set to 1 in for FreeRTOSConfig.h for
|
||||||
|
* xMessageBufferReceive() to be available.
|
||||||
|
*
|
||||||
* @param xMessageBuffer The handle of the message buffer from which a message
|
* @param xMessageBuffer The handle of the message buffer from which a message
|
||||||
* is being received.
|
* is being received.
|
||||||
*
|
*
|
||||||
|
@ -604,6 +621,9 @@ typedef StreamBufferHandle_t MessageBufferHandle_t;
|
||||||
* xMessageBufferReceiveFromISR() to read from a message buffer from an
|
* xMessageBufferReceiveFromISR() to read from a message buffer from an
|
||||||
* interrupt service routine (ISR).
|
* interrupt service routine (ISR).
|
||||||
*
|
*
|
||||||
|
* configUSE_STREAM_BUFFERS must be set to 1 in for FreeRTOSConfig.h for
|
||||||
|
* xMessageBufferReceiveFromISR() to be available.
|
||||||
|
*
|
||||||
* @param xMessageBuffer The handle of the message buffer from which a message
|
* @param xMessageBuffer The handle of the message buffer from which a message
|
||||||
* is being received.
|
* is being received.
|
||||||
*
|
*
|
||||||
|
@ -687,6 +707,9 @@ typedef StreamBufferHandle_t MessageBufferHandle_t;
|
||||||
* A message buffer handle must not be used after the message buffer has been
|
* A message buffer handle must not be used after the message buffer has been
|
||||||
* deleted.
|
* deleted.
|
||||||
*
|
*
|
||||||
|
* configUSE_STREAM_BUFFERS must be set to 1 in for FreeRTOSConfig.h for
|
||||||
|
* vMessageBufferDelete() to be available.
|
||||||
|
*
|
||||||
* @param xMessageBuffer The handle of the message buffer to be deleted.
|
* @param xMessageBuffer The handle of the message buffer to be deleted.
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
@ -703,6 +726,9 @@ typedef StreamBufferHandle_t MessageBufferHandle_t;
|
||||||
* cannot accept any more messages, of any size, until space is made available
|
* cannot accept any more messages, of any size, until space is made available
|
||||||
* by a message being removed from the message buffer.
|
* by a message being removed from the message buffer.
|
||||||
*
|
*
|
||||||
|
* configUSE_STREAM_BUFFERS must be set to 1 in for FreeRTOSConfig.h for
|
||||||
|
* xMessageBufferIsFull() to be available.
|
||||||
|
*
|
||||||
* @param xMessageBuffer The handle of the message buffer being queried.
|
* @param xMessageBuffer The handle of the message buffer being queried.
|
||||||
*
|
*
|
||||||
* @return If the message buffer referenced by xMessageBuffer is full then
|
* @return If the message buffer referenced by xMessageBuffer is full then
|
||||||
|
@ -719,6 +745,9 @@ typedef StreamBufferHandle_t MessageBufferHandle_t;
|
||||||
*
|
*
|
||||||
* Tests to see if a message buffer is empty (does not contain any messages).
|
* Tests to see if a message buffer is empty (does not contain any messages).
|
||||||
*
|
*
|
||||||
|
* configUSE_STREAM_BUFFERS must be set to 1 in for FreeRTOSConfig.h for
|
||||||
|
* xMessageBufferIsEmpty() to be available.
|
||||||
|
*
|
||||||
* @param xMessageBuffer The handle of the message buffer being queried.
|
* @param xMessageBuffer The handle of the message buffer being queried.
|
||||||
*
|
*
|
||||||
* @return If the message buffer referenced by xMessageBuffer is empty then
|
* @return If the message buffer referenced by xMessageBuffer is empty then
|
||||||
|
@ -739,6 +768,9 @@ typedef StreamBufferHandle_t MessageBufferHandle_t;
|
||||||
*
|
*
|
||||||
* A message buffer can only be reset if there are no tasks blocked on it.
|
* A message buffer can only be reset if there are no tasks blocked on it.
|
||||||
*
|
*
|
||||||
|
* configUSE_STREAM_BUFFERS must be set to 1 in for FreeRTOSConfig.h for
|
||||||
|
* xMessageBufferReset() to be available.
|
||||||
|
*
|
||||||
* @param xMessageBuffer The handle of the message buffer being reset.
|
* @param xMessageBuffer The handle of the message buffer being reset.
|
||||||
*
|
*
|
||||||
* @return If the message buffer was reset then pdPASS is returned. If the
|
* @return If the message buffer was reset then pdPASS is returned. If the
|
||||||
|
@ -760,6 +792,9 @@ typedef StreamBufferHandle_t MessageBufferHandle_t;
|
||||||
* @endcode
|
* @endcode
|
||||||
* Returns the number of bytes of free space in the message buffer.
|
* Returns the number of bytes of free space in the message buffer.
|
||||||
*
|
*
|
||||||
|
* configUSE_STREAM_BUFFERS must be set to 1 in for FreeRTOSConfig.h for
|
||||||
|
* xMessageBufferSpaceAvailable() to be available.
|
||||||
|
*
|
||||||
* @param xMessageBuffer The handle of the message buffer being queried.
|
* @param xMessageBuffer The handle of the message buffer being queried.
|
||||||
*
|
*
|
||||||
* @return The number of bytes that can be written to the message buffer before
|
* @return The number of bytes that can be written to the message buffer before
|
||||||
|
@ -786,6 +821,9 @@ typedef StreamBufferHandle_t MessageBufferHandle_t;
|
||||||
* Useful if xMessageBufferReceive() returned 0 because the size of the buffer
|
* Useful if xMessageBufferReceive() returned 0 because the size of the buffer
|
||||||
* passed into xMessageBufferReceive() was too small to hold the next message.
|
* passed into xMessageBufferReceive() was too small to hold the next message.
|
||||||
*
|
*
|
||||||
|
* configUSE_STREAM_BUFFERS must be set to 1 in for FreeRTOSConfig.h for
|
||||||
|
* xMessageBufferNextLengthBytes() to be available.
|
||||||
|
*
|
||||||
* @param xMessageBuffer The handle of the message buffer being queried.
|
* @param xMessageBuffer The handle of the message buffer being queried.
|
||||||
*
|
*
|
||||||
* @return The length (in bytes) of the next message in the message buffer, or 0
|
* @return The length (in bytes) of the next message in the message buffer, or 0
|
||||||
|
@ -817,6 +855,9 @@ typedef StreamBufferHandle_t MessageBufferHandle_t;
|
||||||
* See the example implemented in FreeRTOS/Demo/Minimal/MessageBufferAMP.c for
|
* See the example implemented in FreeRTOS/Demo/Minimal/MessageBufferAMP.c for
|
||||||
* additional information.
|
* additional information.
|
||||||
*
|
*
|
||||||
|
* configUSE_STREAM_BUFFERS must be set to 1 in for FreeRTOSConfig.h for
|
||||||
|
* xMessageBufferSendCompletedFromISR() to be available.
|
||||||
|
*
|
||||||
* @param xMessageBuffer The handle of the stream buffer to which data was
|
* @param xMessageBuffer The handle of the stream buffer to which data was
|
||||||
* written.
|
* written.
|
||||||
*
|
*
|
||||||
|
@ -858,6 +899,9 @@ typedef StreamBufferHandle_t MessageBufferHandle_t;
|
||||||
* See the example implemented in FreeRTOS/Demo/Minimal/MessageBufferAMP.c for
|
* See the example implemented in FreeRTOS/Demo/Minimal/MessageBufferAMP.c for
|
||||||
* additional information.
|
* additional information.
|
||||||
*
|
*
|
||||||
|
* configUSE_STREAM_BUFFERS must be set to 1 in for FreeRTOSConfig.h for
|
||||||
|
* xMessageBufferReceiveCompletedFromISR() to be available.
|
||||||
|
*
|
||||||
* @param xMessageBuffer The handle of the stream buffer from which data was
|
* @param xMessageBuffer The handle of the stream buffer from which data was
|
||||||
* read.
|
* read.
|
||||||
*
|
*
|
||||||
|
|
|
@ -91,6 +91,8 @@ typedef void (* StreamBufferCallbackFunction_t)( StreamBufferHandle_t xStreamBuf
|
||||||
*
|
*
|
||||||
* configSUPPORT_DYNAMIC_ALLOCATION must be set to 1 or left undefined in
|
* configSUPPORT_DYNAMIC_ALLOCATION must be set to 1 or left undefined in
|
||||||
* FreeRTOSConfig.h for xStreamBufferCreate() to be available.
|
* FreeRTOSConfig.h for xStreamBufferCreate() to be available.
|
||||||
|
* configUSE_STREAM_BUFFERS must be set to 1 in for FreeRTOSConfig.h for
|
||||||
|
* xStreamBufferCreate() to be available.
|
||||||
*
|
*
|
||||||
* @param xBufferSizeBytes The total number of bytes the stream buffer will be
|
* @param xBufferSizeBytes The total number of bytes the stream buffer will be
|
||||||
* able to hold at any one time.
|
* able to hold at any one time.
|
||||||
|
@ -175,7 +177,9 @@ typedef void (* StreamBufferCallbackFunction_t)( StreamBufferHandle_t xStreamBuf
|
||||||
* xStreamBufferCreate() for a version that uses dynamically allocated memory.
|
* xStreamBufferCreate() for a version that uses dynamically allocated memory.
|
||||||
*
|
*
|
||||||
* configSUPPORT_STATIC_ALLOCATION must be set to 1 in FreeRTOSConfig.h for
|
* configSUPPORT_STATIC_ALLOCATION must be set to 1 in FreeRTOSConfig.h for
|
||||||
* xStreamBufferCreateStatic() to be available.
|
* xStreamBufferCreateStatic() to be available. configUSE_STREAM_BUFFERS must be
|
||||||
|
* set to 1 in for FreeRTOSConfig.h for xStreamBufferCreateStatic() to be
|
||||||
|
* available.
|
||||||
*
|
*
|
||||||
* @param xBufferSizeBytes The size, in bytes, of the buffer pointed to by the
|
* @param xBufferSizeBytes The size, in bytes, of the buffer pointed to by the
|
||||||
* pucStreamBufferStorageArea parameter.
|
* pucStreamBufferStorageArea parameter.
|
||||||
|
@ -273,6 +277,9 @@ typedef void (* StreamBufferCallbackFunction_t)( StreamBufferHandle_t xStreamBuf
|
||||||
* buffer and storage area buffer. These are the same buffers that are supplied
|
* buffer and storage area buffer. These are the same buffers that are supplied
|
||||||
* at the time of creation.
|
* at the time of creation.
|
||||||
*
|
*
|
||||||
|
* configUSE_STREAM_BUFFERS must be set to 1 in for FreeRTOSConfig.h for
|
||||||
|
* xStreamBufferGetStaticBuffers() to be available.
|
||||||
|
*
|
||||||
* @param xStreamBuffer The stream buffer for which to retrieve the buffers.
|
* @param xStreamBuffer The stream buffer for which to retrieve the buffers.
|
||||||
*
|
*
|
||||||
* @param ppucStreamBufferStorageArea Used to return a pointer to the stream
|
* @param ppucStreamBufferStorageArea Used to return a pointer to the stream
|
||||||
|
@ -323,6 +330,9 @@ typedef void (* StreamBufferCallbackFunction_t)( StreamBufferHandle_t xStreamBuf
|
||||||
* xStreamBufferSendFromISR() to write to a stream buffer from an interrupt
|
* xStreamBufferSendFromISR() to write to a stream buffer from an interrupt
|
||||||
* service routine (ISR).
|
* service routine (ISR).
|
||||||
*
|
*
|
||||||
|
* configUSE_STREAM_BUFFERS must be set to 1 in for FreeRTOSConfig.h for
|
||||||
|
* xStreamBufferSend() to be available.
|
||||||
|
*
|
||||||
* @param xStreamBuffer The handle of the stream buffer to which a stream is
|
* @param xStreamBuffer The handle of the stream buffer to which a stream is
|
||||||
* being sent.
|
* being sent.
|
||||||
*
|
*
|
||||||
|
@ -421,6 +431,9 @@ size_t xStreamBufferSend( StreamBufferHandle_t xStreamBuffer,
|
||||||
* xStreamBufferSendFromISR() to write to a stream buffer from an interrupt
|
* xStreamBufferSendFromISR() to write to a stream buffer from an interrupt
|
||||||
* service routine (ISR).
|
* service routine (ISR).
|
||||||
*
|
*
|
||||||
|
* configUSE_STREAM_BUFFERS must be set to 1 in for FreeRTOSConfig.h for
|
||||||
|
* xStreamBufferSendFromISR() to be available.
|
||||||
|
*
|
||||||
* @param xStreamBuffer The handle of the stream buffer to which a stream is
|
* @param xStreamBuffer The handle of the stream buffer to which a stream is
|
||||||
* being sent.
|
* being sent.
|
||||||
*
|
*
|
||||||
|
@ -521,6 +534,9 @@ size_t xStreamBufferSendFromISR( StreamBufferHandle_t xStreamBuffer,
|
||||||
* xStreamBufferReceiveFromISR() to read from a stream buffer from an
|
* xStreamBufferReceiveFromISR() to read from a stream buffer from an
|
||||||
* interrupt service routine (ISR).
|
* interrupt service routine (ISR).
|
||||||
*
|
*
|
||||||
|
* configUSE_STREAM_BUFFERS must be set to 1 in for FreeRTOSConfig.h for
|
||||||
|
* xStreamBufferReceive() to be available.
|
||||||
|
*
|
||||||
* @param xStreamBuffer The handle of the stream buffer from which bytes are to
|
* @param xStreamBuffer The handle of the stream buffer from which bytes are to
|
||||||
* be received.
|
* be received.
|
||||||
*
|
*
|
||||||
|
@ -596,6 +612,9 @@ size_t xStreamBufferReceive( StreamBufferHandle_t xStreamBuffer,
|
||||||
* Use xStreamBufferReceiveFromISR() to read bytes from a stream buffer from an
|
* Use xStreamBufferReceiveFromISR() to read bytes from a stream buffer from an
|
||||||
* interrupt service routine (ISR).
|
* interrupt service routine (ISR).
|
||||||
*
|
*
|
||||||
|
* configUSE_STREAM_BUFFERS must be set to 1 in for FreeRTOSConfig.h for
|
||||||
|
* xStreamBufferReceiveFromISR() to be available.
|
||||||
|
*
|
||||||
* @param xStreamBuffer The handle of the stream buffer from which a stream
|
* @param xStreamBuffer The handle of the stream buffer from which a stream
|
||||||
* is being received.
|
* is being received.
|
||||||
*
|
*
|
||||||
|
@ -680,6 +699,9 @@ size_t xStreamBufferReceiveFromISR( StreamBufferHandle_t xStreamBuffer,
|
||||||
* A stream buffer handle must not be used after the stream buffer has been
|
* A stream buffer handle must not be used after the stream buffer has been
|
||||||
* deleted.
|
* deleted.
|
||||||
*
|
*
|
||||||
|
* configUSE_STREAM_BUFFERS must be set to 1 in for FreeRTOSConfig.h for
|
||||||
|
* vStreamBufferDelete() to be available.
|
||||||
|
*
|
||||||
* @param xStreamBuffer The handle of the stream buffer to be deleted.
|
* @param xStreamBuffer The handle of the stream buffer to be deleted.
|
||||||
*
|
*
|
||||||
* \defgroup vStreamBufferDelete vStreamBufferDelete
|
* \defgroup vStreamBufferDelete vStreamBufferDelete
|
||||||
|
@ -697,6 +719,9 @@ void vStreamBufferDelete( StreamBufferHandle_t xStreamBuffer ) PRIVILEGED_FUNCTI
|
||||||
* Queries a stream buffer to see if it is full. A stream buffer is full if it
|
* Queries a stream buffer to see if it is full. A stream buffer is full if it
|
||||||
* does not have any free space, and therefore cannot accept any more data.
|
* does not have any free space, and therefore cannot accept any more data.
|
||||||
*
|
*
|
||||||
|
* configUSE_STREAM_BUFFERS must be set to 1 in for FreeRTOSConfig.h for
|
||||||
|
* xStreamBufferIsFull() to be available.
|
||||||
|
*
|
||||||
* @param xStreamBuffer The handle of the stream buffer being queried.
|
* @param xStreamBuffer The handle of the stream buffer being queried.
|
||||||
*
|
*
|
||||||
* @return If the stream buffer is full then pdTRUE is returned. Otherwise
|
* @return If the stream buffer is full then pdTRUE is returned. Otherwise
|
||||||
|
@ -717,6 +742,9 @@ BaseType_t xStreamBufferIsFull( StreamBufferHandle_t xStreamBuffer ) PRIVILEGED_
|
||||||
* Queries a stream buffer to see if it is empty. A stream buffer is empty if
|
* Queries a stream buffer to see if it is empty. A stream buffer is empty if
|
||||||
* it does not contain any data.
|
* it does not contain any data.
|
||||||
*
|
*
|
||||||
|
* configUSE_STREAM_BUFFERS must be set to 1 in for FreeRTOSConfig.h for
|
||||||
|
* xStreamBufferIsEmpty() to be available.
|
||||||
|
*
|
||||||
* @param xStreamBuffer The handle of the stream buffer being queried.
|
* @param xStreamBuffer The handle of the stream buffer being queried.
|
||||||
*
|
*
|
||||||
* @return If the stream buffer is empty then pdTRUE is returned. Otherwise
|
* @return If the stream buffer is empty then pdTRUE is returned. Otherwise
|
||||||
|
@ -739,6 +767,9 @@ BaseType_t xStreamBufferIsEmpty( StreamBufferHandle_t xStreamBuffer ) PRIVILEGED
|
||||||
* are no tasks blocked waiting to either send to or receive from the stream
|
* are no tasks blocked waiting to either send to or receive from the stream
|
||||||
* buffer.
|
* buffer.
|
||||||
*
|
*
|
||||||
|
* configUSE_STREAM_BUFFERS must be set to 1 in for FreeRTOSConfig.h for
|
||||||
|
* xStreamBufferReset() to be available.
|
||||||
|
*
|
||||||
* @param xStreamBuffer The handle of the stream buffer being reset.
|
* @param xStreamBuffer The handle of the stream buffer being reset.
|
||||||
*
|
*
|
||||||
* @return If the stream buffer is reset then pdPASS is returned. If there was
|
* @return If the stream buffer is reset then pdPASS is returned. If there was
|
||||||
|
@ -761,6 +792,9 @@ BaseType_t xStreamBufferReset( StreamBufferHandle_t xStreamBuffer ) PRIVILEGED_F
|
||||||
* equal to the amount of data that can be sent to the stream buffer before it
|
* equal to the amount of data that can be sent to the stream buffer before it
|
||||||
* is full.
|
* is full.
|
||||||
*
|
*
|
||||||
|
* configUSE_STREAM_BUFFERS must be set to 1 in for FreeRTOSConfig.h for
|
||||||
|
* xStreamBufferSpacesAvailable() to be available.
|
||||||
|
*
|
||||||
* @param xStreamBuffer The handle of the stream buffer being queried.
|
* @param xStreamBuffer The handle of the stream buffer being queried.
|
||||||
*
|
*
|
||||||
* @return The number of bytes that can be written to the stream buffer before
|
* @return The number of bytes that can be written to the stream buffer before
|
||||||
|
@ -782,6 +816,9 @@ size_t xStreamBufferSpacesAvailable( StreamBufferHandle_t xStreamBuffer ) PRIVIL
|
||||||
* the number of bytes that can be read from the stream buffer before the stream
|
* the number of bytes that can be read from the stream buffer before the stream
|
||||||
* buffer would be empty.
|
* buffer would be empty.
|
||||||
*
|
*
|
||||||
|
* configUSE_STREAM_BUFFERS must be set to 1 in for FreeRTOSConfig.h for
|
||||||
|
* xStreamBufferBytesAvailable() to be available.
|
||||||
|
*
|
||||||
* @param xStreamBuffer The handle of the stream buffer being queried.
|
* @param xStreamBuffer The handle of the stream buffer being queried.
|
||||||
*
|
*
|
||||||
* @return The number of bytes that can be read from the stream buffer before
|
* @return The number of bytes that can be read from the stream buffer before
|
||||||
|
@ -816,6 +853,9 @@ size_t xStreamBufferBytesAvailable( StreamBufferHandle_t xStreamBuffer ) PRIVILE
|
||||||
* A trigger level is set when the stream buffer is created, and can be modified
|
* A trigger level is set when the stream buffer is created, and can be modified
|
||||||
* using xStreamBufferSetTriggerLevel().
|
* using xStreamBufferSetTriggerLevel().
|
||||||
*
|
*
|
||||||
|
* configUSE_STREAM_BUFFERS must be set to 1 in for FreeRTOSConfig.h for
|
||||||
|
* xStreamBufferSetTriggerLevel() to be available.
|
||||||
|
*
|
||||||
* @param xStreamBuffer The handle of the stream buffer being updated.
|
* @param xStreamBuffer The handle of the stream buffer being updated.
|
||||||
*
|
*
|
||||||
* @param xTriggerLevel The new trigger level for the stream buffer.
|
* @param xTriggerLevel The new trigger level for the stream buffer.
|
||||||
|
@ -850,6 +890,9 @@ BaseType_t xStreamBufferSetTriggerLevel( StreamBufferHandle_t xStreamBuffer,
|
||||||
* See the example implemented in FreeRTOS/Demo/Minimal/MessageBufferAMP.c for
|
* See the example implemented in FreeRTOS/Demo/Minimal/MessageBufferAMP.c for
|
||||||
* additional information.
|
* additional information.
|
||||||
*
|
*
|
||||||
|
* configUSE_STREAM_BUFFERS must be set to 1 in for FreeRTOSConfig.h for
|
||||||
|
* xStreamBufferSendCompletedFromISR() to be available.
|
||||||
|
*
|
||||||
* @param xStreamBuffer The handle of the stream buffer to which data was
|
* @param xStreamBuffer The handle of the stream buffer to which data was
|
||||||
* written.
|
* written.
|
||||||
*
|
*
|
||||||
|
@ -891,6 +934,9 @@ BaseType_t xStreamBufferSendCompletedFromISR( StreamBufferHandle_t xStreamBuffer
|
||||||
* See the example implemented in FreeRTOS/Demo/Minimal/MessageBufferAMP.c for
|
* See the example implemented in FreeRTOS/Demo/Minimal/MessageBufferAMP.c for
|
||||||
* additional information.
|
* additional information.
|
||||||
*
|
*
|
||||||
|
* configUSE_STREAM_BUFFERS must be set to 1 in for FreeRTOSConfig.h for
|
||||||
|
* xStreamBufferReceiveCompletedFromISR() to be available.
|
||||||
|
*
|
||||||
* @param xStreamBuffer The handle of the stream buffer from which data was
|
* @param xStreamBuffer The handle of the stream buffer from which data was
|
||||||
* read.
|
* read.
|
||||||
*
|
*
|
||||||
|
@ -924,6 +970,9 @@ BaseType_t xStreamBufferReceiveCompletedFromISR( StreamBufferHandle_t xStreamBuf
|
||||||
* vStreamBufferSetStreamBufferNotificationIndex, this function returns the
|
* vStreamBufferSetStreamBufferNotificationIndex, this function returns the
|
||||||
* default value (tskDEFAULT_INDEX_TO_NOTIFY).
|
* default value (tskDEFAULT_INDEX_TO_NOTIFY).
|
||||||
*
|
*
|
||||||
|
* configUSE_STREAM_BUFFERS must be set to 1 in for FreeRTOSConfig.h for
|
||||||
|
* uxStreamBufferGetStreamBufferNotificationIndex() to be available.
|
||||||
|
*
|
||||||
* @param xStreamBuffer The handle of the stream buffer for which the task
|
* @param xStreamBuffer The handle of the stream buffer for which the task
|
||||||
* notification index is retrieved.
|
* notification index is retrieved.
|
||||||
*
|
*
|
||||||
|
@ -951,6 +1000,9 @@ UBaseType_t uxStreamBufferGetStreamBufferNotificationIndex( StreamBufferHandle_t
|
||||||
* before attempting to send or receive data from the stream buffer to avoid
|
* before attempting to send or receive data from the stream buffer to avoid
|
||||||
* inconsistencies.
|
* inconsistencies.
|
||||||
*
|
*
|
||||||
|
* configUSE_STREAM_BUFFERS must be set to 1 in for FreeRTOSConfig.h for
|
||||||
|
* vStreamBufferSetStreamBufferNotificationIndex() to be available.
|
||||||
|
*
|
||||||
* @param xStreamBuffer The handle of the stream buffer for which the task
|
* @param xStreamBuffer The handle of the stream buffer for which the task
|
||||||
* notification index is set.
|
* notification index is set.
|
||||||
*
|
*
|
||||||
|
|
|
@ -1690,6 +1690,8 @@
|
||||||
#endif /* if ( configUSE_TIMERS == 1 ) */
|
#endif /* if ( configUSE_TIMERS == 1 ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
|
#if ( configUSE_EVENT_GROUPS == 1 )
|
||||||
|
|
||||||
EventBits_t MPU_xEventGroupWaitBitsEntry( const xEventGroupWaitBitsParams_t * pxParams ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
EventBits_t MPU_xEventGroupWaitBitsEntry( const xEventGroupWaitBitsParams_t * pxParams ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
||||||
|
|
||||||
EventBits_t MPU_xEventGroupWaitBitsEntry( const xEventGroupWaitBitsParams_t * pxParams ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */
|
EventBits_t MPU_xEventGroupWaitBitsEntry( const xEventGroupWaitBitsParams_t * pxParams ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */
|
||||||
|
@ -1713,8 +1715,12 @@
|
||||||
: : "i" ( SYSTEM_CALL_xEventGroupWaitBits ) : "memory"
|
: : "i" ( SYSTEM_CALL_xEventGroupWaitBits ) : "memory"
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endif /* #if ( configUSE_EVENT_GROUPS == 1 ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
|
#if ( configUSE_EVENT_GROUPS == 1 )
|
||||||
|
|
||||||
EventBits_t MPU_xEventGroupClearBits( EventGroupHandle_t xEventGroup,
|
EventBits_t MPU_xEventGroupClearBits( EventGroupHandle_t xEventGroup,
|
||||||
const EventBits_t uxBitsToClear ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
const EventBits_t uxBitsToClear ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
||||||
|
|
||||||
|
@ -1740,8 +1746,12 @@
|
||||||
: : "i" ( SYSTEM_CALL_xEventGroupClearBits ) : "memory"
|
: : "i" ( SYSTEM_CALL_xEventGroupClearBits ) : "memory"
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endif /* #if ( configUSE_EVENT_GROUPS == 1 ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
|
#if ( configUSE_EVENT_GROUPS == 1 )
|
||||||
|
|
||||||
EventBits_t MPU_xEventGroupSetBits( EventGroupHandle_t xEventGroup,
|
EventBits_t MPU_xEventGroupSetBits( EventGroupHandle_t xEventGroup,
|
||||||
const EventBits_t uxBitsToSet ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
const EventBits_t uxBitsToSet ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
||||||
|
|
||||||
|
@ -1767,8 +1777,12 @@
|
||||||
: : "i" ( SYSTEM_CALL_xEventGroupSetBits ) : "memory"
|
: : "i" ( SYSTEM_CALL_xEventGroupSetBits ) : "memory"
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endif /* #if ( configUSE_EVENT_GROUPS == 1 ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
|
#if ( configUSE_EVENT_GROUPS == 1 )
|
||||||
|
|
||||||
EventBits_t MPU_xEventGroupSync( EventGroupHandle_t xEventGroup,
|
EventBits_t MPU_xEventGroupSync( EventGroupHandle_t xEventGroup,
|
||||||
const EventBits_t uxBitsToSet,
|
const EventBits_t uxBitsToSet,
|
||||||
const EventBits_t uxBitsToWaitFor,
|
const EventBits_t uxBitsToWaitFor,
|
||||||
|
@ -1798,9 +1812,11 @@
|
||||||
: : "i" ( SYSTEM_CALL_xEventGroupSync ) : "memory"
|
: : "i" ( SYSTEM_CALL_xEventGroupSync ) : "memory"
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endif /* #if ( configUSE_EVENT_GROUPS == 1 ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
#if ( configUSE_TRACE_FACILITY == 1 )
|
#if ( ( configUSE_EVENT_GROUPS == 1 ) && ( configUSE_TRACE_FACILITY == 1 ) )
|
||||||
|
|
||||||
UBaseType_t MPU_uxEventGroupGetNumber( void * xEventGroup ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
UBaseType_t MPU_uxEventGroupGetNumber( void * xEventGroup ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
||||||
|
|
||||||
|
@ -1826,10 +1842,10 @@
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
#endif /*( configUSE_TRACE_FACILITY == 1 )*/
|
#endif /* #if ( ( configUSE_EVENT_GROUPS == 1 ) && ( configUSE_TRACE_FACILITY == 1 ) ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
#if ( configUSE_TRACE_FACILITY == 1 )
|
#if ( ( configUSE_EVENT_GROUPS == 1 ) && ( configUSE_TRACE_FACILITY == 1 ) )
|
||||||
|
|
||||||
void MPU_vEventGroupSetNumber( void * xEventGroup,
|
void MPU_vEventGroupSetNumber( void * xEventGroup,
|
||||||
UBaseType_t uxEventGroupNumber ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
UBaseType_t uxEventGroupNumber ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
||||||
|
@ -1857,9 +1873,11 @@
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
#endif /*( configUSE_TRACE_FACILITY == 1 )*/
|
#endif /* #if ( ( configUSE_EVENT_GROUPS == 1 ) && ( configUSE_TRACE_FACILITY == 1 ) ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
|
#if ( configUSE_STREAM_BUFFERS == 1 )
|
||||||
|
|
||||||
size_t MPU_xStreamBufferSend( StreamBufferHandle_t xStreamBuffer,
|
size_t MPU_xStreamBufferSend( StreamBufferHandle_t xStreamBuffer,
|
||||||
const void * pvTxData,
|
const void * pvTxData,
|
||||||
size_t xDataLengthBytes,
|
size_t xDataLengthBytes,
|
||||||
|
@ -1889,8 +1907,12 @@
|
||||||
: : "i" ( SYSTEM_CALL_xStreamBufferSend ) : "memory"
|
: : "i" ( SYSTEM_CALL_xStreamBufferSend ) : "memory"
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endif /* #if ( configUSE_STREAM_BUFFERS == 1 ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
|
#if ( configUSE_STREAM_BUFFERS == 1 )
|
||||||
|
|
||||||
size_t MPU_xStreamBufferReceive( StreamBufferHandle_t xStreamBuffer,
|
size_t MPU_xStreamBufferReceive( StreamBufferHandle_t xStreamBuffer,
|
||||||
void * pvRxData,
|
void * pvRxData,
|
||||||
size_t xBufferLengthBytes,
|
size_t xBufferLengthBytes,
|
||||||
|
@ -1920,8 +1942,12 @@
|
||||||
: : "i" ( SYSTEM_CALL_xStreamBufferReceive ) : "memory"
|
: : "i" ( SYSTEM_CALL_xStreamBufferReceive ) : "memory"
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endif /* #if ( configUSE_STREAM_BUFFERS == 1 ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
|
#if ( configUSE_STREAM_BUFFERS == 1 )
|
||||||
|
|
||||||
BaseType_t MPU_xStreamBufferIsFull( StreamBufferHandle_t xStreamBuffer ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
BaseType_t MPU_xStreamBufferIsFull( StreamBufferHandle_t xStreamBuffer ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
||||||
|
|
||||||
BaseType_t MPU_xStreamBufferIsFull( StreamBufferHandle_t xStreamBuffer ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */
|
BaseType_t MPU_xStreamBufferIsFull( StreamBufferHandle_t xStreamBuffer ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */
|
||||||
|
@ -1945,8 +1971,12 @@
|
||||||
: : "i" ( SYSTEM_CALL_xStreamBufferIsFull ) : "memory"
|
: : "i" ( SYSTEM_CALL_xStreamBufferIsFull ) : "memory"
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endif /* #if ( configUSE_STREAM_BUFFERS == 1 ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
|
#if ( configUSE_STREAM_BUFFERS == 1 )
|
||||||
|
|
||||||
BaseType_t MPU_xStreamBufferIsEmpty( StreamBufferHandle_t xStreamBuffer ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
BaseType_t MPU_xStreamBufferIsEmpty( StreamBufferHandle_t xStreamBuffer ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
||||||
|
|
||||||
BaseType_t MPU_xStreamBufferIsEmpty( StreamBufferHandle_t xStreamBuffer ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */
|
BaseType_t MPU_xStreamBufferIsEmpty( StreamBufferHandle_t xStreamBuffer ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */
|
||||||
|
@ -1970,8 +2000,12 @@
|
||||||
: : "i" ( SYSTEM_CALL_xStreamBufferIsEmpty ) : "memory"
|
: : "i" ( SYSTEM_CALL_xStreamBufferIsEmpty ) : "memory"
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endif /* #if ( configUSE_STREAM_BUFFERS == 1 ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
|
#if ( configUSE_STREAM_BUFFERS == 1 )
|
||||||
|
|
||||||
size_t MPU_xStreamBufferSpacesAvailable( StreamBufferHandle_t xStreamBuffer ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
size_t MPU_xStreamBufferSpacesAvailable( StreamBufferHandle_t xStreamBuffer ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
||||||
|
|
||||||
size_t MPU_xStreamBufferSpacesAvailable( StreamBufferHandle_t xStreamBuffer ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */
|
size_t MPU_xStreamBufferSpacesAvailable( StreamBufferHandle_t xStreamBuffer ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */
|
||||||
|
@ -1995,8 +2029,12 @@
|
||||||
: : "i" ( SYSTEM_CALL_xStreamBufferSpacesAvailable ) : "memory"
|
: : "i" ( SYSTEM_CALL_xStreamBufferSpacesAvailable ) : "memory"
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endif /* #if ( configUSE_STREAM_BUFFERS == 1 ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
|
#if ( configUSE_STREAM_BUFFERS == 1 )
|
||||||
|
|
||||||
size_t MPU_xStreamBufferBytesAvailable( StreamBufferHandle_t xStreamBuffer ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
size_t MPU_xStreamBufferBytesAvailable( StreamBufferHandle_t xStreamBuffer ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
||||||
|
|
||||||
size_t MPU_xStreamBufferBytesAvailable( StreamBufferHandle_t xStreamBuffer ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */
|
size_t MPU_xStreamBufferBytesAvailable( StreamBufferHandle_t xStreamBuffer ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */
|
||||||
|
@ -2020,8 +2058,12 @@
|
||||||
: : "i" ( SYSTEM_CALL_xStreamBufferBytesAvailable ) : "memory"
|
: : "i" ( SYSTEM_CALL_xStreamBufferBytesAvailable ) : "memory"
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endif /* #if ( configUSE_STREAM_BUFFERS == 1 ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
|
#if ( configUSE_STREAM_BUFFERS == 1 )
|
||||||
|
|
||||||
BaseType_t MPU_xStreamBufferSetTriggerLevel( StreamBufferHandle_t xStreamBuffer,
|
BaseType_t MPU_xStreamBufferSetTriggerLevel( StreamBufferHandle_t xStreamBuffer,
|
||||||
size_t xTriggerLevel ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
size_t xTriggerLevel ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
||||||
|
|
||||||
|
@ -2047,8 +2089,12 @@
|
||||||
: : "i" ( SYSTEM_CALL_xStreamBufferSetTriggerLevel ) : "memory"
|
: : "i" ( SYSTEM_CALL_xStreamBufferSetTriggerLevel ) : "memory"
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endif /* #if ( configUSE_STREAM_BUFFERS == 1 ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
|
#if ( configUSE_STREAM_BUFFERS == 1 )
|
||||||
|
|
||||||
size_t MPU_xStreamBufferNextMessageLengthBytes( StreamBufferHandle_t xStreamBuffer ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
size_t MPU_xStreamBufferNextMessageLengthBytes( StreamBufferHandle_t xStreamBuffer ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
||||||
|
|
||||||
size_t MPU_xStreamBufferNextMessageLengthBytes( StreamBufferHandle_t xStreamBuffer ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */
|
size_t MPU_xStreamBufferNextMessageLengthBytes( StreamBufferHandle_t xStreamBuffer ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */
|
||||||
|
@ -2072,6 +2118,8 @@
|
||||||
: : "i" ( SYSTEM_CALL_xStreamBufferNextMessageLengthBytes ) : "memory"
|
: : "i" ( SYSTEM_CALL_xStreamBufferNextMessageLengthBytes ) : "memory"
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endif /* #if ( configUSE_STREAM_BUFFERS == 1 ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
#endif /* ( configENABLE_MPU == 1 ) && ( configUSE_MPU_WRAPPERS_V1 == 0 ) */
|
#endif /* ( configENABLE_MPU == 1 ) && ( configUSE_MPU_WRAPPERS_V1 == 0 ) */
|
||||||
|
|
|
@ -1690,6 +1690,8 @@
|
||||||
#endif /* if ( configUSE_TIMERS == 1 ) */
|
#endif /* if ( configUSE_TIMERS == 1 ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
|
#if ( configUSE_EVENT_GROUPS == 1 )
|
||||||
|
|
||||||
EventBits_t MPU_xEventGroupWaitBitsEntry( const xEventGroupWaitBitsParams_t * pxParams ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
EventBits_t MPU_xEventGroupWaitBitsEntry( const xEventGroupWaitBitsParams_t * pxParams ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
||||||
|
|
||||||
EventBits_t MPU_xEventGroupWaitBitsEntry( const xEventGroupWaitBitsParams_t * pxParams ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */
|
EventBits_t MPU_xEventGroupWaitBitsEntry( const xEventGroupWaitBitsParams_t * pxParams ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */
|
||||||
|
@ -1713,8 +1715,12 @@
|
||||||
: : "i" ( SYSTEM_CALL_xEventGroupWaitBits ) : "memory"
|
: : "i" ( SYSTEM_CALL_xEventGroupWaitBits ) : "memory"
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endif /* #if ( configUSE_EVENT_GROUPS == 1 ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
|
#if ( configUSE_EVENT_GROUPS == 1 )
|
||||||
|
|
||||||
EventBits_t MPU_xEventGroupClearBits( EventGroupHandle_t xEventGroup,
|
EventBits_t MPU_xEventGroupClearBits( EventGroupHandle_t xEventGroup,
|
||||||
const EventBits_t uxBitsToClear ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
const EventBits_t uxBitsToClear ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
||||||
|
|
||||||
|
@ -1740,8 +1746,12 @@
|
||||||
: : "i" ( SYSTEM_CALL_xEventGroupClearBits ) : "memory"
|
: : "i" ( SYSTEM_CALL_xEventGroupClearBits ) : "memory"
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endif /* #if ( configUSE_EVENT_GROUPS == 1 ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
|
#if ( configUSE_EVENT_GROUPS == 1 )
|
||||||
|
|
||||||
EventBits_t MPU_xEventGroupSetBits( EventGroupHandle_t xEventGroup,
|
EventBits_t MPU_xEventGroupSetBits( EventGroupHandle_t xEventGroup,
|
||||||
const EventBits_t uxBitsToSet ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
const EventBits_t uxBitsToSet ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
||||||
|
|
||||||
|
@ -1767,8 +1777,12 @@
|
||||||
: : "i" ( SYSTEM_CALL_xEventGroupSetBits ) : "memory"
|
: : "i" ( SYSTEM_CALL_xEventGroupSetBits ) : "memory"
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endif /* #if ( configUSE_EVENT_GROUPS == 1 ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
|
#if ( configUSE_EVENT_GROUPS == 1 )
|
||||||
|
|
||||||
EventBits_t MPU_xEventGroupSync( EventGroupHandle_t xEventGroup,
|
EventBits_t MPU_xEventGroupSync( EventGroupHandle_t xEventGroup,
|
||||||
const EventBits_t uxBitsToSet,
|
const EventBits_t uxBitsToSet,
|
||||||
const EventBits_t uxBitsToWaitFor,
|
const EventBits_t uxBitsToWaitFor,
|
||||||
|
@ -1798,9 +1812,11 @@
|
||||||
: : "i" ( SYSTEM_CALL_xEventGroupSync ) : "memory"
|
: : "i" ( SYSTEM_CALL_xEventGroupSync ) : "memory"
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endif /* #if ( configUSE_EVENT_GROUPS == 1 ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
#if ( configUSE_TRACE_FACILITY == 1 )
|
#if ( ( configUSE_EVENT_GROUPS == 1 ) && ( configUSE_TRACE_FACILITY == 1 ) )
|
||||||
|
|
||||||
UBaseType_t MPU_uxEventGroupGetNumber( void * xEventGroup ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
UBaseType_t MPU_uxEventGroupGetNumber( void * xEventGroup ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
||||||
|
|
||||||
|
@ -1826,10 +1842,10 @@
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
#endif /*( configUSE_TRACE_FACILITY == 1 )*/
|
#endif /* #if ( ( configUSE_EVENT_GROUPS == 1 ) && ( configUSE_TRACE_FACILITY == 1 ) ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
#if ( configUSE_TRACE_FACILITY == 1 )
|
#if ( ( configUSE_EVENT_GROUPS == 1 ) && ( configUSE_TRACE_FACILITY == 1 ) )
|
||||||
|
|
||||||
void MPU_vEventGroupSetNumber( void * xEventGroup,
|
void MPU_vEventGroupSetNumber( void * xEventGroup,
|
||||||
UBaseType_t uxEventGroupNumber ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
UBaseType_t uxEventGroupNumber ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
||||||
|
@ -1857,9 +1873,11 @@
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
#endif /*( configUSE_TRACE_FACILITY == 1 )*/
|
#endif /* #if ( ( configUSE_EVENT_GROUPS == 1 ) && ( configUSE_TRACE_FACILITY == 1 ) ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
|
#if ( configUSE_STREAM_BUFFERS == 1 )
|
||||||
|
|
||||||
size_t MPU_xStreamBufferSend( StreamBufferHandle_t xStreamBuffer,
|
size_t MPU_xStreamBufferSend( StreamBufferHandle_t xStreamBuffer,
|
||||||
const void * pvTxData,
|
const void * pvTxData,
|
||||||
size_t xDataLengthBytes,
|
size_t xDataLengthBytes,
|
||||||
|
@ -1889,8 +1907,12 @@
|
||||||
: : "i" ( SYSTEM_CALL_xStreamBufferSend ) : "memory"
|
: : "i" ( SYSTEM_CALL_xStreamBufferSend ) : "memory"
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endif /* #if ( configUSE_STREAM_BUFFERS == 1 ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
|
#if ( configUSE_STREAM_BUFFERS == 1 )
|
||||||
|
|
||||||
size_t MPU_xStreamBufferReceive( StreamBufferHandle_t xStreamBuffer,
|
size_t MPU_xStreamBufferReceive( StreamBufferHandle_t xStreamBuffer,
|
||||||
void * pvRxData,
|
void * pvRxData,
|
||||||
size_t xBufferLengthBytes,
|
size_t xBufferLengthBytes,
|
||||||
|
@ -1920,8 +1942,12 @@
|
||||||
: : "i" ( SYSTEM_CALL_xStreamBufferReceive ) : "memory"
|
: : "i" ( SYSTEM_CALL_xStreamBufferReceive ) : "memory"
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endif /* #if ( configUSE_STREAM_BUFFERS == 1 ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
|
#if ( configUSE_STREAM_BUFFERS == 1 )
|
||||||
|
|
||||||
BaseType_t MPU_xStreamBufferIsFull( StreamBufferHandle_t xStreamBuffer ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
BaseType_t MPU_xStreamBufferIsFull( StreamBufferHandle_t xStreamBuffer ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
||||||
|
|
||||||
BaseType_t MPU_xStreamBufferIsFull( StreamBufferHandle_t xStreamBuffer ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */
|
BaseType_t MPU_xStreamBufferIsFull( StreamBufferHandle_t xStreamBuffer ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */
|
||||||
|
@ -1945,8 +1971,12 @@
|
||||||
: : "i" ( SYSTEM_CALL_xStreamBufferIsFull ) : "memory"
|
: : "i" ( SYSTEM_CALL_xStreamBufferIsFull ) : "memory"
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endif /* #if ( configUSE_STREAM_BUFFERS == 1 ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
|
#if ( configUSE_STREAM_BUFFERS == 1 )
|
||||||
|
|
||||||
BaseType_t MPU_xStreamBufferIsEmpty( StreamBufferHandle_t xStreamBuffer ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
BaseType_t MPU_xStreamBufferIsEmpty( StreamBufferHandle_t xStreamBuffer ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
||||||
|
|
||||||
BaseType_t MPU_xStreamBufferIsEmpty( StreamBufferHandle_t xStreamBuffer ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */
|
BaseType_t MPU_xStreamBufferIsEmpty( StreamBufferHandle_t xStreamBuffer ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */
|
||||||
|
@ -1970,8 +2000,12 @@
|
||||||
: : "i" ( SYSTEM_CALL_xStreamBufferIsEmpty ) : "memory"
|
: : "i" ( SYSTEM_CALL_xStreamBufferIsEmpty ) : "memory"
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endif /* #if ( configUSE_STREAM_BUFFERS == 1 ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
|
#if ( configUSE_STREAM_BUFFERS == 1 )
|
||||||
|
|
||||||
size_t MPU_xStreamBufferSpacesAvailable( StreamBufferHandle_t xStreamBuffer ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
size_t MPU_xStreamBufferSpacesAvailable( StreamBufferHandle_t xStreamBuffer ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
||||||
|
|
||||||
size_t MPU_xStreamBufferSpacesAvailable( StreamBufferHandle_t xStreamBuffer ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */
|
size_t MPU_xStreamBufferSpacesAvailable( StreamBufferHandle_t xStreamBuffer ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */
|
||||||
|
@ -1995,8 +2029,12 @@
|
||||||
: : "i" ( SYSTEM_CALL_xStreamBufferSpacesAvailable ) : "memory"
|
: : "i" ( SYSTEM_CALL_xStreamBufferSpacesAvailable ) : "memory"
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endif /* #if ( configUSE_STREAM_BUFFERS == 1 ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
|
#if ( configUSE_STREAM_BUFFERS == 1 )
|
||||||
|
|
||||||
size_t MPU_xStreamBufferBytesAvailable( StreamBufferHandle_t xStreamBuffer ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
size_t MPU_xStreamBufferBytesAvailable( StreamBufferHandle_t xStreamBuffer ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
||||||
|
|
||||||
size_t MPU_xStreamBufferBytesAvailable( StreamBufferHandle_t xStreamBuffer ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */
|
size_t MPU_xStreamBufferBytesAvailable( StreamBufferHandle_t xStreamBuffer ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */
|
||||||
|
@ -2020,8 +2058,12 @@
|
||||||
: : "i" ( SYSTEM_CALL_xStreamBufferBytesAvailable ) : "memory"
|
: : "i" ( SYSTEM_CALL_xStreamBufferBytesAvailable ) : "memory"
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endif /* #if ( configUSE_STREAM_BUFFERS == 1 ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
|
#if ( configUSE_STREAM_BUFFERS == 1 )
|
||||||
|
|
||||||
BaseType_t MPU_xStreamBufferSetTriggerLevel( StreamBufferHandle_t xStreamBuffer,
|
BaseType_t MPU_xStreamBufferSetTriggerLevel( StreamBufferHandle_t xStreamBuffer,
|
||||||
size_t xTriggerLevel ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
size_t xTriggerLevel ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
||||||
|
|
||||||
|
@ -2047,8 +2089,12 @@
|
||||||
: : "i" ( SYSTEM_CALL_xStreamBufferSetTriggerLevel ) : "memory"
|
: : "i" ( SYSTEM_CALL_xStreamBufferSetTriggerLevel ) : "memory"
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endif /* #if ( configUSE_STREAM_BUFFERS == 1 ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
|
#if ( configUSE_STREAM_BUFFERS == 1 )
|
||||||
|
|
||||||
size_t MPU_xStreamBufferNextMessageLengthBytes( StreamBufferHandle_t xStreamBuffer ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
size_t MPU_xStreamBufferNextMessageLengthBytes( StreamBufferHandle_t xStreamBuffer ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
||||||
|
|
||||||
size_t MPU_xStreamBufferNextMessageLengthBytes( StreamBufferHandle_t xStreamBuffer ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */
|
size_t MPU_xStreamBufferNextMessageLengthBytes( StreamBufferHandle_t xStreamBuffer ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */
|
||||||
|
@ -2072,6 +2118,8 @@
|
||||||
: : "i" ( SYSTEM_CALL_xStreamBufferNextMessageLengthBytes ) : "memory"
|
: : "i" ( SYSTEM_CALL_xStreamBufferNextMessageLengthBytes ) : "memory"
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endif /* #if ( configUSE_STREAM_BUFFERS == 1 ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
#endif /* ( configENABLE_MPU == 1 ) && ( configUSE_MPU_WRAPPERS_V1 == 0 ) */
|
#endif /* ( configENABLE_MPU == 1 ) && ( configUSE_MPU_WRAPPERS_V1 == 0 ) */
|
||||||
|
|
|
@ -1634,6 +1634,8 @@
|
||||||
#endif /* if ( configUSE_TIMERS == 1 ) */
|
#endif /* if ( configUSE_TIMERS == 1 ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
|
#if ( configUSE_EVENT_GROUPS == 1 )
|
||||||
|
|
||||||
EventBits_t MPU_xEventGroupWaitBitsEntry( const xEventGroupWaitBitsParams_t * pxParams ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
EventBits_t MPU_xEventGroupWaitBitsEntry( const xEventGroupWaitBitsParams_t * pxParams ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
||||||
|
|
||||||
EventBits_t MPU_xEventGroupWaitBitsEntry( const xEventGroupWaitBitsParams_t * pxParams ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */
|
EventBits_t MPU_xEventGroupWaitBitsEntry( const xEventGroupWaitBitsParams_t * pxParams ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */
|
||||||
|
@ -1656,8 +1658,12 @@
|
||||||
: : "i" ( SYSTEM_CALL_xEventGroupWaitBits ) : "memory"
|
: : "i" ( SYSTEM_CALL_xEventGroupWaitBits ) : "memory"
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endif /* #if ( configUSE_EVENT_GROUPS == 1 ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
|
#if ( configUSE_EVENT_GROUPS == 1 )
|
||||||
|
|
||||||
EventBits_t MPU_xEventGroupClearBits( EventGroupHandle_t xEventGroup,
|
EventBits_t MPU_xEventGroupClearBits( EventGroupHandle_t xEventGroup,
|
||||||
const EventBits_t uxBitsToClear ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
const EventBits_t uxBitsToClear ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
||||||
|
|
||||||
|
@ -1682,8 +1688,12 @@
|
||||||
: : "i" ( SYSTEM_CALL_xEventGroupClearBits ) : "memory"
|
: : "i" ( SYSTEM_CALL_xEventGroupClearBits ) : "memory"
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endif /* #if ( configUSE_EVENT_GROUPS == 1 ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
|
#if ( configUSE_EVENT_GROUPS == 1 )
|
||||||
|
|
||||||
EventBits_t MPU_xEventGroupSetBits( EventGroupHandle_t xEventGroup,
|
EventBits_t MPU_xEventGroupSetBits( EventGroupHandle_t xEventGroup,
|
||||||
const EventBits_t uxBitsToSet ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
const EventBits_t uxBitsToSet ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
||||||
|
|
||||||
|
@ -1708,8 +1718,13 @@
|
||||||
: : "i" ( SYSTEM_CALL_xEventGroupSetBits ) : "memory"
|
: : "i" ( SYSTEM_CALL_xEventGroupSetBits ) : "memory"
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endif /* #if ( configUSE_EVENT_GROUPS == 1 ) */
|
||||||
|
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
|
#if ( configUSE_EVENT_GROUPS == 1 )
|
||||||
|
|
||||||
EventBits_t MPU_xEventGroupSync( EventGroupHandle_t xEventGroup,
|
EventBits_t MPU_xEventGroupSync( EventGroupHandle_t xEventGroup,
|
||||||
const EventBits_t uxBitsToSet,
|
const EventBits_t uxBitsToSet,
|
||||||
const EventBits_t uxBitsToWaitFor,
|
const EventBits_t uxBitsToWaitFor,
|
||||||
|
@ -1738,9 +1753,11 @@
|
||||||
: : "i" ( SYSTEM_CALL_xEventGroupSync ) : "memory"
|
: : "i" ( SYSTEM_CALL_xEventGroupSync ) : "memory"
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endif /* #if ( configUSE_EVENT_GROUPS == 1 ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
#if ( configUSE_TRACE_FACILITY == 1 )
|
#if ( ( configUSE_EVENT_GROUPS == 1 ) && ( configUSE_TRACE_FACILITY == 1 ) )
|
||||||
|
|
||||||
UBaseType_t MPU_uxEventGroupGetNumber( void * xEventGroup ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
UBaseType_t MPU_uxEventGroupGetNumber( void * xEventGroup ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
||||||
|
|
||||||
|
@ -1765,10 +1782,10 @@
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
#endif /*( configUSE_TRACE_FACILITY == 1 )*/
|
#endif /* #if ( ( configUSE_EVENT_GROUPS == 1 ) && ( configUSE_TRACE_FACILITY == 1 ) ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
#if ( configUSE_TRACE_FACILITY == 1 )
|
#if ( ( configUSE_EVENT_GROUPS == 1 ) && ( configUSE_TRACE_FACILITY == 1 ) )
|
||||||
|
|
||||||
void MPU_vEventGroupSetNumber( void * xEventGroup,
|
void MPU_vEventGroupSetNumber( void * xEventGroup,
|
||||||
UBaseType_t uxEventGroupNumber ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
UBaseType_t uxEventGroupNumber ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
||||||
|
@ -1795,9 +1812,11 @@
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
#endif /*( configUSE_TRACE_FACILITY == 1 )*/
|
#endif /* #if ( ( configUSE_EVENT_GROUPS == 1 ) && ( configUSE_TRACE_FACILITY == 1 ) ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
|
#if ( configUSE_STREAM_BUFFERS == 1 )
|
||||||
|
|
||||||
size_t MPU_xStreamBufferSend( StreamBufferHandle_t xStreamBuffer,
|
size_t MPU_xStreamBufferSend( StreamBufferHandle_t xStreamBuffer,
|
||||||
const void * pvTxData,
|
const void * pvTxData,
|
||||||
size_t xDataLengthBytes,
|
size_t xDataLengthBytes,
|
||||||
|
@ -1826,8 +1845,12 @@
|
||||||
: : "i" ( SYSTEM_CALL_xStreamBufferSend ) : "memory"
|
: : "i" ( SYSTEM_CALL_xStreamBufferSend ) : "memory"
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endif /* #if ( configUSE_STREAM_BUFFERS == 1 ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
|
#if ( configUSE_STREAM_BUFFERS == 1 )
|
||||||
|
|
||||||
size_t MPU_xStreamBufferReceive( StreamBufferHandle_t xStreamBuffer,
|
size_t MPU_xStreamBufferReceive( StreamBufferHandle_t xStreamBuffer,
|
||||||
void * pvRxData,
|
void * pvRxData,
|
||||||
size_t xBufferLengthBytes,
|
size_t xBufferLengthBytes,
|
||||||
|
@ -1856,8 +1879,12 @@
|
||||||
: : "i" ( SYSTEM_CALL_xStreamBufferReceive ) : "memory"
|
: : "i" ( SYSTEM_CALL_xStreamBufferReceive ) : "memory"
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endif /* #if ( configUSE_STREAM_BUFFERS == 1 ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
|
#if ( configUSE_STREAM_BUFFERS == 1 )
|
||||||
|
|
||||||
BaseType_t MPU_xStreamBufferIsFull( StreamBufferHandle_t xStreamBuffer ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
BaseType_t MPU_xStreamBufferIsFull( StreamBufferHandle_t xStreamBuffer ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
||||||
|
|
||||||
BaseType_t MPU_xStreamBufferIsFull( StreamBufferHandle_t xStreamBuffer ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */
|
BaseType_t MPU_xStreamBufferIsFull( StreamBufferHandle_t xStreamBuffer ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */
|
||||||
|
@ -1880,8 +1907,12 @@
|
||||||
: : "i" ( SYSTEM_CALL_xStreamBufferIsFull ) : "memory"
|
: : "i" ( SYSTEM_CALL_xStreamBufferIsFull ) : "memory"
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endif /* #if ( configUSE_STREAM_BUFFERS == 1 ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
|
#if ( configUSE_STREAM_BUFFERS == 1 )
|
||||||
|
|
||||||
BaseType_t MPU_xStreamBufferIsEmpty( StreamBufferHandle_t xStreamBuffer ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
BaseType_t MPU_xStreamBufferIsEmpty( StreamBufferHandle_t xStreamBuffer ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
||||||
|
|
||||||
BaseType_t MPU_xStreamBufferIsEmpty( StreamBufferHandle_t xStreamBuffer ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */
|
BaseType_t MPU_xStreamBufferIsEmpty( StreamBufferHandle_t xStreamBuffer ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */
|
||||||
|
@ -1904,8 +1935,12 @@
|
||||||
: : "i" ( SYSTEM_CALL_xStreamBufferIsEmpty ) : "memory"
|
: : "i" ( SYSTEM_CALL_xStreamBufferIsEmpty ) : "memory"
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endif /* #if ( configUSE_STREAM_BUFFERS == 1 ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
|
#if ( configUSE_STREAM_BUFFERS == 1 )
|
||||||
|
|
||||||
size_t MPU_xStreamBufferSpacesAvailable( StreamBufferHandle_t xStreamBuffer ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
size_t MPU_xStreamBufferSpacesAvailable( StreamBufferHandle_t xStreamBuffer ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
||||||
|
|
||||||
size_t MPU_xStreamBufferSpacesAvailable( StreamBufferHandle_t xStreamBuffer ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */
|
size_t MPU_xStreamBufferSpacesAvailable( StreamBufferHandle_t xStreamBuffer ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */
|
||||||
|
@ -1928,8 +1963,12 @@
|
||||||
: : "i" ( SYSTEM_CALL_xStreamBufferSpacesAvailable ) : "memory"
|
: : "i" ( SYSTEM_CALL_xStreamBufferSpacesAvailable ) : "memory"
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endif /* #if ( configUSE_STREAM_BUFFERS == 1 ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
|
#if ( configUSE_STREAM_BUFFERS == 1 )
|
||||||
|
|
||||||
size_t MPU_xStreamBufferBytesAvailable( StreamBufferHandle_t xStreamBuffer ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
size_t MPU_xStreamBufferBytesAvailable( StreamBufferHandle_t xStreamBuffer ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
||||||
|
|
||||||
size_t MPU_xStreamBufferBytesAvailable( StreamBufferHandle_t xStreamBuffer ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */
|
size_t MPU_xStreamBufferBytesAvailable( StreamBufferHandle_t xStreamBuffer ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */
|
||||||
|
@ -1952,8 +1991,12 @@
|
||||||
: : "i" ( SYSTEM_CALL_xStreamBufferBytesAvailable ) : "memory"
|
: : "i" ( SYSTEM_CALL_xStreamBufferBytesAvailable ) : "memory"
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endif /* #if ( configUSE_STREAM_BUFFERS == 1 ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
|
#if ( configUSE_STREAM_BUFFERS == 1 )
|
||||||
|
|
||||||
BaseType_t MPU_xStreamBufferSetTriggerLevel( StreamBufferHandle_t xStreamBuffer,
|
BaseType_t MPU_xStreamBufferSetTriggerLevel( StreamBufferHandle_t xStreamBuffer,
|
||||||
size_t xTriggerLevel ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
size_t xTriggerLevel ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
||||||
|
|
||||||
|
@ -1978,8 +2021,12 @@
|
||||||
: : "i" ( SYSTEM_CALL_xStreamBufferSetTriggerLevel ) : "memory"
|
: : "i" ( SYSTEM_CALL_xStreamBufferSetTriggerLevel ) : "memory"
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endif /* #if ( configUSE_STREAM_BUFFERS == 1 ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
|
#if ( configUSE_STREAM_BUFFERS == 1 )
|
||||||
|
|
||||||
size_t MPU_xStreamBufferNextMessageLengthBytes( StreamBufferHandle_t xStreamBuffer ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
size_t MPU_xStreamBufferNextMessageLengthBytes( StreamBufferHandle_t xStreamBuffer ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
||||||
|
|
||||||
size_t MPU_xStreamBufferNextMessageLengthBytes( StreamBufferHandle_t xStreamBuffer ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */
|
size_t MPU_xStreamBufferNextMessageLengthBytes( StreamBufferHandle_t xStreamBuffer ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */
|
||||||
|
@ -2002,6 +2049,8 @@
|
||||||
: : "i" ( SYSTEM_CALL_xStreamBufferNextMessageLengthBytes ) : "memory"
|
: : "i" ( SYSTEM_CALL_xStreamBufferNextMessageLengthBytes ) : "memory"
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endif /* #if ( configUSE_STREAM_BUFFERS == 1 ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
#endif /* ( configENABLE_MPU == 1 ) && ( configUSE_MPU_WRAPPERS_V1 == 0 ) */
|
#endif /* ( configENABLE_MPU == 1 ) && ( configUSE_MPU_WRAPPERS_V1 == 0 ) */
|
||||||
|
|
|
@ -1634,6 +1634,8 @@
|
||||||
#endif /* if ( configUSE_TIMERS == 1 ) */
|
#endif /* if ( configUSE_TIMERS == 1 ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
|
#if ( configUSE_EVENT_GROUPS == 1 )
|
||||||
|
|
||||||
EventBits_t MPU_xEventGroupWaitBitsEntry( const xEventGroupWaitBitsParams_t * pxParams ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
EventBits_t MPU_xEventGroupWaitBitsEntry( const xEventGroupWaitBitsParams_t * pxParams ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
||||||
|
|
||||||
EventBits_t MPU_xEventGroupWaitBitsEntry( const xEventGroupWaitBitsParams_t * pxParams ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */
|
EventBits_t MPU_xEventGroupWaitBitsEntry( const xEventGroupWaitBitsParams_t * pxParams ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */
|
||||||
|
@ -1656,8 +1658,12 @@
|
||||||
: : "i" ( SYSTEM_CALL_xEventGroupWaitBits ) : "memory"
|
: : "i" ( SYSTEM_CALL_xEventGroupWaitBits ) : "memory"
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endif /* #if ( configUSE_EVENT_GROUPS == 1 ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
|
#if ( configUSE_EVENT_GROUPS == 1 )
|
||||||
|
|
||||||
EventBits_t MPU_xEventGroupClearBits( EventGroupHandle_t xEventGroup,
|
EventBits_t MPU_xEventGroupClearBits( EventGroupHandle_t xEventGroup,
|
||||||
const EventBits_t uxBitsToClear ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
const EventBits_t uxBitsToClear ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
||||||
|
|
||||||
|
@ -1682,8 +1688,12 @@
|
||||||
: : "i" ( SYSTEM_CALL_xEventGroupClearBits ) : "memory"
|
: : "i" ( SYSTEM_CALL_xEventGroupClearBits ) : "memory"
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endif /* #if ( configUSE_EVENT_GROUPS == 1 ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
|
#if ( configUSE_EVENT_GROUPS == 1 )
|
||||||
|
|
||||||
EventBits_t MPU_xEventGroupSetBits( EventGroupHandle_t xEventGroup,
|
EventBits_t MPU_xEventGroupSetBits( EventGroupHandle_t xEventGroup,
|
||||||
const EventBits_t uxBitsToSet ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
const EventBits_t uxBitsToSet ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
||||||
|
|
||||||
|
@ -1708,8 +1718,12 @@
|
||||||
: : "i" ( SYSTEM_CALL_xEventGroupSetBits ) : "memory"
|
: : "i" ( SYSTEM_CALL_xEventGroupSetBits ) : "memory"
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endif /* #if ( configUSE_EVENT_GROUPS == 1 ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
|
#if ( configUSE_EVENT_GROUPS == 1 )
|
||||||
|
|
||||||
EventBits_t MPU_xEventGroupSync( EventGroupHandle_t xEventGroup,
|
EventBits_t MPU_xEventGroupSync( EventGroupHandle_t xEventGroup,
|
||||||
const EventBits_t uxBitsToSet,
|
const EventBits_t uxBitsToSet,
|
||||||
const EventBits_t uxBitsToWaitFor,
|
const EventBits_t uxBitsToWaitFor,
|
||||||
|
@ -1738,9 +1752,11 @@
|
||||||
: : "i" ( SYSTEM_CALL_xEventGroupSync ) : "memory"
|
: : "i" ( SYSTEM_CALL_xEventGroupSync ) : "memory"
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endif /* #if ( configUSE_EVENT_GROUPS == 1 ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
#if ( configUSE_TRACE_FACILITY == 1 )
|
#if ( ( configUSE_EVENT_GROUPS == 1 ) && ( configUSE_TRACE_FACILITY == 1 ) )
|
||||||
|
|
||||||
UBaseType_t MPU_uxEventGroupGetNumber( void * xEventGroup ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
UBaseType_t MPU_uxEventGroupGetNumber( void * xEventGroup ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
||||||
|
|
||||||
|
@ -1765,10 +1781,10 @@
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
#endif /*( configUSE_TRACE_FACILITY == 1 )*/
|
#endif /* #if ( ( configUSE_EVENT_GROUPS == 1 ) && ( configUSE_TRACE_FACILITY == 1 ) ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
#if ( configUSE_TRACE_FACILITY == 1 )
|
#if ( ( configUSE_EVENT_GROUPS == 1 ) && ( configUSE_TRACE_FACILITY == 1 ) )
|
||||||
|
|
||||||
void MPU_vEventGroupSetNumber( void * xEventGroup,
|
void MPU_vEventGroupSetNumber( void * xEventGroup,
|
||||||
UBaseType_t uxEventGroupNumber ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
UBaseType_t uxEventGroupNumber ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
||||||
|
@ -1795,9 +1811,11 @@
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
#endif /*( configUSE_TRACE_FACILITY == 1 )*/
|
#endif /* #if ( ( configUSE_EVENT_GROUPS == 1 ) && ( configUSE_TRACE_FACILITY == 1 ) ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
|
#if ( configUSE_STREAM_BUFFERS == 1 )
|
||||||
|
|
||||||
size_t MPU_xStreamBufferSend( StreamBufferHandle_t xStreamBuffer,
|
size_t MPU_xStreamBufferSend( StreamBufferHandle_t xStreamBuffer,
|
||||||
const void * pvTxData,
|
const void * pvTxData,
|
||||||
size_t xDataLengthBytes,
|
size_t xDataLengthBytes,
|
||||||
|
@ -1826,8 +1844,12 @@
|
||||||
: : "i" ( SYSTEM_CALL_xStreamBufferSend ) : "memory"
|
: : "i" ( SYSTEM_CALL_xStreamBufferSend ) : "memory"
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endif /* #if ( configUSE_STREAM_BUFFERS == 1 ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
|
#if ( configUSE_STREAM_BUFFERS == 1 )
|
||||||
|
|
||||||
size_t MPU_xStreamBufferReceive( StreamBufferHandle_t xStreamBuffer,
|
size_t MPU_xStreamBufferReceive( StreamBufferHandle_t xStreamBuffer,
|
||||||
void * pvRxData,
|
void * pvRxData,
|
||||||
size_t xBufferLengthBytes,
|
size_t xBufferLengthBytes,
|
||||||
|
@ -1856,8 +1878,12 @@
|
||||||
: : "i" ( SYSTEM_CALL_xStreamBufferReceive ) : "memory"
|
: : "i" ( SYSTEM_CALL_xStreamBufferReceive ) : "memory"
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endif /* #if ( configUSE_STREAM_BUFFERS == 1 ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
|
#if ( configUSE_STREAM_BUFFERS == 1 )
|
||||||
|
|
||||||
BaseType_t MPU_xStreamBufferIsFull( StreamBufferHandle_t xStreamBuffer ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
BaseType_t MPU_xStreamBufferIsFull( StreamBufferHandle_t xStreamBuffer ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
||||||
|
|
||||||
BaseType_t MPU_xStreamBufferIsFull( StreamBufferHandle_t xStreamBuffer ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */
|
BaseType_t MPU_xStreamBufferIsFull( StreamBufferHandle_t xStreamBuffer ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */
|
||||||
|
@ -1880,8 +1906,12 @@
|
||||||
: : "i" ( SYSTEM_CALL_xStreamBufferIsFull ) : "memory"
|
: : "i" ( SYSTEM_CALL_xStreamBufferIsFull ) : "memory"
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endif /* #if ( configUSE_STREAM_BUFFERS == 1 ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
|
#if ( configUSE_STREAM_BUFFERS == 1 )
|
||||||
|
|
||||||
BaseType_t MPU_xStreamBufferIsEmpty( StreamBufferHandle_t xStreamBuffer ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
BaseType_t MPU_xStreamBufferIsEmpty( StreamBufferHandle_t xStreamBuffer ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
||||||
|
|
||||||
BaseType_t MPU_xStreamBufferIsEmpty( StreamBufferHandle_t xStreamBuffer ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */
|
BaseType_t MPU_xStreamBufferIsEmpty( StreamBufferHandle_t xStreamBuffer ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */
|
||||||
|
@ -1904,8 +1934,12 @@
|
||||||
: : "i" ( SYSTEM_CALL_xStreamBufferIsEmpty ) : "memory"
|
: : "i" ( SYSTEM_CALL_xStreamBufferIsEmpty ) : "memory"
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endif /* #if ( configUSE_STREAM_BUFFERS == 1 ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
|
#if ( configUSE_STREAM_BUFFERS == 1 )
|
||||||
|
|
||||||
size_t MPU_xStreamBufferSpacesAvailable( StreamBufferHandle_t xStreamBuffer ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
size_t MPU_xStreamBufferSpacesAvailable( StreamBufferHandle_t xStreamBuffer ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
||||||
|
|
||||||
size_t MPU_xStreamBufferSpacesAvailable( StreamBufferHandle_t xStreamBuffer ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */
|
size_t MPU_xStreamBufferSpacesAvailable( StreamBufferHandle_t xStreamBuffer ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */
|
||||||
|
@ -1928,8 +1962,12 @@
|
||||||
: : "i" ( SYSTEM_CALL_xStreamBufferSpacesAvailable ) : "memory"
|
: : "i" ( SYSTEM_CALL_xStreamBufferSpacesAvailable ) : "memory"
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endif /* #if ( configUSE_STREAM_BUFFERS == 1 ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
|
#if ( configUSE_STREAM_BUFFERS == 1 )
|
||||||
|
|
||||||
size_t MPU_xStreamBufferBytesAvailable( StreamBufferHandle_t xStreamBuffer ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
size_t MPU_xStreamBufferBytesAvailable( StreamBufferHandle_t xStreamBuffer ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
||||||
|
|
||||||
size_t MPU_xStreamBufferBytesAvailable( StreamBufferHandle_t xStreamBuffer ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */
|
size_t MPU_xStreamBufferBytesAvailable( StreamBufferHandle_t xStreamBuffer ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */
|
||||||
|
@ -1952,8 +1990,12 @@
|
||||||
: : "i" ( SYSTEM_CALL_xStreamBufferBytesAvailable ) : "memory"
|
: : "i" ( SYSTEM_CALL_xStreamBufferBytesAvailable ) : "memory"
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endif /* #if ( configUSE_STREAM_BUFFERS == 1 ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
|
#if ( configUSE_STREAM_BUFFERS == 1 )
|
||||||
|
|
||||||
BaseType_t MPU_xStreamBufferSetTriggerLevel( StreamBufferHandle_t xStreamBuffer,
|
BaseType_t MPU_xStreamBufferSetTriggerLevel( StreamBufferHandle_t xStreamBuffer,
|
||||||
size_t xTriggerLevel ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
size_t xTriggerLevel ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
||||||
|
|
||||||
|
@ -1978,8 +2020,12 @@
|
||||||
: : "i" ( SYSTEM_CALL_xStreamBufferSetTriggerLevel ) : "memory"
|
: : "i" ( SYSTEM_CALL_xStreamBufferSetTriggerLevel ) : "memory"
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endif /* #if ( configUSE_STREAM_BUFFERS == 1 ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
|
#if ( configUSE_STREAM_BUFFERS == 1 )
|
||||||
|
|
||||||
size_t MPU_xStreamBufferNextMessageLengthBytes( StreamBufferHandle_t xStreamBuffer ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
size_t MPU_xStreamBufferNextMessageLengthBytes( StreamBufferHandle_t xStreamBuffer ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
||||||
|
|
||||||
size_t MPU_xStreamBufferNextMessageLengthBytes( StreamBufferHandle_t xStreamBuffer ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */
|
size_t MPU_xStreamBufferNextMessageLengthBytes( StreamBufferHandle_t xStreamBuffer ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */
|
||||||
|
@ -2002,6 +2048,8 @@
|
||||||
: : "i" ( SYSTEM_CALL_xStreamBufferNextMessageLengthBytes ) : "memory"
|
: : "i" ( SYSTEM_CALL_xStreamBufferNextMessageLengthBytes ) : "memory"
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endif /* #if ( configUSE_STREAM_BUFFERS == 1 ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
#endif /* ( configENABLE_MPU == 1 ) && ( configUSE_MPU_WRAPPERS_V1 == 0 ) */
|
#endif /* ( configENABLE_MPU == 1 ) && ( configUSE_MPU_WRAPPERS_V1 == 0 ) */
|
||||||
|
|
|
@ -1952,7 +1952,7 @@
|
||||||
#endif /* if ( configUSE_TIMERS == 1 ) */
|
#endif /* if ( configUSE_TIMERS == 1 ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
#if ( configSUPPORT_DYNAMIC_ALLOCATION == 1 )
|
#if ( ( configSUPPORT_DYNAMIC_ALLOCATION == 1 ) && ( configUSE_EVENT_GROUPS == 1 ) )
|
||||||
EventGroupHandle_t MPU_xEventGroupCreate( void ) /* FREERTOS_SYSTEM_CALL */
|
EventGroupHandle_t MPU_xEventGroupCreate( void ) /* FREERTOS_SYSTEM_CALL */
|
||||||
{
|
{
|
||||||
EventGroupHandle_t xReturn;
|
EventGroupHandle_t xReturn;
|
||||||
|
@ -1975,10 +1975,10 @@
|
||||||
|
|
||||||
return xReturn;
|
return xReturn;
|
||||||
}
|
}
|
||||||
#endif /* if ( configSUPPORT_DYNAMIC_ALLOCATION == 1 ) */
|
#endif /* #if ( ( configSUPPORT_DYNAMIC_ALLOCATION == 1 ) && ( configUSE_EVENT_GROUPS == 1 ) ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
#if ( configSUPPORT_STATIC_ALLOCATION == 1 )
|
#if ( ( configSUPPORT_STATIC_ALLOCATION == 1 ) && ( configUSE_EVENT_GROUPS == 1 ) )
|
||||||
EventGroupHandle_t MPU_xEventGroupCreateStatic( StaticEventGroup_t * pxEventGroupBuffer ) /* FREERTOS_SYSTEM_CALL */
|
EventGroupHandle_t MPU_xEventGroupCreateStatic( StaticEventGroup_t * pxEventGroupBuffer ) /* FREERTOS_SYSTEM_CALL */
|
||||||
{
|
{
|
||||||
EventGroupHandle_t xReturn;
|
EventGroupHandle_t xReturn;
|
||||||
|
@ -2001,9 +2001,10 @@
|
||||||
|
|
||||||
return xReturn;
|
return xReturn;
|
||||||
}
|
}
|
||||||
#endif /* if ( configSUPPORT_STATIC_ALLOCATION == 1 ) */
|
#endif /* #if ( ( configSUPPORT_STATIC_ALLOCATION == 1 ) && ( configUSE_EVENT_GROUPS == 1 ) ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
|
#if ( configUSE_EVENT_GROUPS == 1 )
|
||||||
EventBits_t MPU_xEventGroupWaitBits( EventGroupHandle_t xEventGroup,
|
EventBits_t MPU_xEventGroupWaitBits( EventGroupHandle_t xEventGroup,
|
||||||
const EventBits_t uxBitsToWaitFor,
|
const EventBits_t uxBitsToWaitFor,
|
||||||
const BaseType_t xClearOnExit,
|
const BaseType_t xClearOnExit,
|
||||||
|
@ -2030,8 +2031,10 @@
|
||||||
|
|
||||||
return xReturn;
|
return xReturn;
|
||||||
}
|
}
|
||||||
|
#endif /* #if ( configUSE_EVENT_GROUPS == 1 ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
|
#if ( configUSE_EVENT_GROUPS == 1 )
|
||||||
EventBits_t MPU_xEventGroupClearBits( EventGroupHandle_t xEventGroup,
|
EventBits_t MPU_xEventGroupClearBits( EventGroupHandle_t xEventGroup,
|
||||||
const EventBits_t uxBitsToClear ) /* FREERTOS_SYSTEM_CALL */
|
const EventBits_t uxBitsToClear ) /* FREERTOS_SYSTEM_CALL */
|
||||||
{
|
{
|
||||||
|
@ -2055,8 +2058,10 @@
|
||||||
|
|
||||||
return xReturn;
|
return xReturn;
|
||||||
}
|
}
|
||||||
|
#endif /* #if ( configUSE_EVENT_GROUPS == 1 ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
|
#if ( configUSE_EVENT_GROUPS == 1 )
|
||||||
EventBits_t MPU_xEventGroupSetBits( EventGroupHandle_t xEventGroup,
|
EventBits_t MPU_xEventGroupSetBits( EventGroupHandle_t xEventGroup,
|
||||||
const EventBits_t uxBitsToSet ) /* FREERTOS_SYSTEM_CALL */
|
const EventBits_t uxBitsToSet ) /* FREERTOS_SYSTEM_CALL */
|
||||||
{
|
{
|
||||||
|
@ -2080,8 +2085,10 @@
|
||||||
|
|
||||||
return xReturn;
|
return xReturn;
|
||||||
}
|
}
|
||||||
|
#endif /* #if ( configUSE_EVENT_GROUPS == 1 ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
|
#if ( configUSE_EVENT_GROUPS == 1 )
|
||||||
EventBits_t MPU_xEventGroupSync( EventGroupHandle_t xEventGroup,
|
EventBits_t MPU_xEventGroupSync( EventGroupHandle_t xEventGroup,
|
||||||
const EventBits_t uxBitsToSet,
|
const EventBits_t uxBitsToSet,
|
||||||
const EventBits_t uxBitsToWaitFor,
|
const EventBits_t uxBitsToWaitFor,
|
||||||
|
@ -2107,8 +2114,10 @@
|
||||||
|
|
||||||
return xReturn;
|
return xReturn;
|
||||||
}
|
}
|
||||||
|
#endif /* #if ( configUSE_EVENT_GROUPS == 1 ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
|
#if ( configUSE_EVENT_GROUPS == 1 )
|
||||||
void MPU_vEventGroupDelete( EventGroupHandle_t xEventGroup ) /* FREERTOS_SYSTEM_CALL */
|
void MPU_vEventGroupDelete( EventGroupHandle_t xEventGroup ) /* FREERTOS_SYSTEM_CALL */
|
||||||
{
|
{
|
||||||
if( portIS_PRIVILEGED() == pdFALSE )
|
if( portIS_PRIVILEGED() == pdFALSE )
|
||||||
|
@ -2127,8 +2136,10 @@
|
||||||
vEventGroupDelete( xEventGroup );
|
vEventGroupDelete( xEventGroup );
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
#endif /* #if ( configUSE_EVENT_GROUPS == 1 ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
|
#if ( configUSE_STREAM_BUFFERS == 1 )
|
||||||
size_t MPU_xStreamBufferSend( StreamBufferHandle_t xStreamBuffer,
|
size_t MPU_xStreamBufferSend( StreamBufferHandle_t xStreamBuffer,
|
||||||
const void * pvTxData,
|
const void * pvTxData,
|
||||||
size_t xDataLengthBytes,
|
size_t xDataLengthBytes,
|
||||||
|
@ -2154,8 +2165,10 @@
|
||||||
|
|
||||||
return xReturn;
|
return xReturn;
|
||||||
}
|
}
|
||||||
|
#endif /* #if ( configUSE_STREAM_BUFFERS == 1 ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
|
#if ( configUSE_STREAM_BUFFERS == 1 )
|
||||||
size_t MPU_xStreamBufferNextMessageLengthBytes( StreamBufferHandle_t xStreamBuffer ) /* FREERTOS_SYSTEM_CALL */
|
size_t MPU_xStreamBufferNextMessageLengthBytes( StreamBufferHandle_t xStreamBuffer ) /* FREERTOS_SYSTEM_CALL */
|
||||||
{
|
{
|
||||||
size_t xReturn;
|
size_t xReturn;
|
||||||
|
@ -2178,8 +2191,10 @@
|
||||||
|
|
||||||
return xReturn;
|
return xReturn;
|
||||||
}
|
}
|
||||||
|
#endif /* #if ( configUSE_STREAM_BUFFERS == 1 ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
|
#if ( configUSE_STREAM_BUFFERS == 1 )
|
||||||
size_t MPU_xStreamBufferReceive( StreamBufferHandle_t xStreamBuffer,
|
size_t MPU_xStreamBufferReceive( StreamBufferHandle_t xStreamBuffer,
|
||||||
void * pvRxData,
|
void * pvRxData,
|
||||||
size_t xBufferLengthBytes,
|
size_t xBufferLengthBytes,
|
||||||
|
@ -2205,8 +2220,10 @@
|
||||||
|
|
||||||
return xReturn;
|
return xReturn;
|
||||||
}
|
}
|
||||||
|
#endif /* #if ( configUSE_STREAM_BUFFERS == 1 ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
|
#if ( configUSE_STREAM_BUFFERS == 1 )
|
||||||
void MPU_vStreamBufferDelete( StreamBufferHandle_t xStreamBuffer ) /* FREERTOS_SYSTEM_CALL */
|
void MPU_vStreamBufferDelete( StreamBufferHandle_t xStreamBuffer ) /* FREERTOS_SYSTEM_CALL */
|
||||||
{
|
{
|
||||||
if( portIS_PRIVILEGED() == pdFALSE )
|
if( portIS_PRIVILEGED() == pdFALSE )
|
||||||
|
@ -2225,8 +2242,10 @@
|
||||||
vStreamBufferDelete( xStreamBuffer );
|
vStreamBufferDelete( xStreamBuffer );
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
#endif /* #if ( configUSE_STREAM_BUFFERS == 1 ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
|
#if ( configUSE_STREAM_BUFFERS == 1 )
|
||||||
BaseType_t MPU_xStreamBufferIsFull( StreamBufferHandle_t xStreamBuffer ) /* FREERTOS_SYSTEM_CALL */
|
BaseType_t MPU_xStreamBufferIsFull( StreamBufferHandle_t xStreamBuffer ) /* FREERTOS_SYSTEM_CALL */
|
||||||
{
|
{
|
||||||
BaseType_t xReturn;
|
BaseType_t xReturn;
|
||||||
|
@ -2249,8 +2268,10 @@
|
||||||
|
|
||||||
return xReturn;
|
return xReturn;
|
||||||
}
|
}
|
||||||
|
#endif /* #if ( configUSE_STREAM_BUFFERS == 1 ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
|
#if ( configUSE_STREAM_BUFFERS == 1 )
|
||||||
BaseType_t MPU_xStreamBufferIsEmpty( StreamBufferHandle_t xStreamBuffer ) /* FREERTOS_SYSTEM_CALL */
|
BaseType_t MPU_xStreamBufferIsEmpty( StreamBufferHandle_t xStreamBuffer ) /* FREERTOS_SYSTEM_CALL */
|
||||||
{
|
{
|
||||||
BaseType_t xReturn;
|
BaseType_t xReturn;
|
||||||
|
@ -2273,8 +2294,10 @@
|
||||||
|
|
||||||
return xReturn;
|
return xReturn;
|
||||||
}
|
}
|
||||||
|
#endif /* #if ( configUSE_STREAM_BUFFERS == 1 ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
|
#if ( configUSE_STREAM_BUFFERS == 1 )
|
||||||
BaseType_t MPU_xStreamBufferReset( StreamBufferHandle_t xStreamBuffer ) /* FREERTOS_SYSTEM_CALL */
|
BaseType_t MPU_xStreamBufferReset( StreamBufferHandle_t xStreamBuffer ) /* FREERTOS_SYSTEM_CALL */
|
||||||
{
|
{
|
||||||
BaseType_t xReturn;
|
BaseType_t xReturn;
|
||||||
|
@ -2297,8 +2320,10 @@
|
||||||
|
|
||||||
return xReturn;
|
return xReturn;
|
||||||
}
|
}
|
||||||
|
#endif /* #if ( configUSE_STREAM_BUFFERS == 1 ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
|
#if ( configUSE_STREAM_BUFFERS == 1 )
|
||||||
size_t MPU_xStreamBufferSpacesAvailable( StreamBufferHandle_t xStreamBuffer ) /* FREERTOS_SYSTEM_CALL */
|
size_t MPU_xStreamBufferSpacesAvailable( StreamBufferHandle_t xStreamBuffer ) /* FREERTOS_SYSTEM_CALL */
|
||||||
{
|
{
|
||||||
size_t xReturn;
|
size_t xReturn;
|
||||||
|
@ -2320,8 +2345,10 @@
|
||||||
|
|
||||||
return xReturn;
|
return xReturn;
|
||||||
}
|
}
|
||||||
|
#endif /* #if ( configUSE_STREAM_BUFFERS == 1 ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
|
#if ( configUSE_STREAM_BUFFERS == 1 )
|
||||||
size_t MPU_xStreamBufferBytesAvailable( StreamBufferHandle_t xStreamBuffer ) /* FREERTOS_SYSTEM_CALL */
|
size_t MPU_xStreamBufferBytesAvailable( StreamBufferHandle_t xStreamBuffer ) /* FREERTOS_SYSTEM_CALL */
|
||||||
{
|
{
|
||||||
size_t xReturn;
|
size_t xReturn;
|
||||||
|
@ -2344,8 +2371,10 @@
|
||||||
|
|
||||||
return xReturn;
|
return xReturn;
|
||||||
}
|
}
|
||||||
|
#endif /* #if ( configUSE_STREAM_BUFFERS == 1 ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
|
#if ( configUSE_STREAM_BUFFERS == 1 )
|
||||||
BaseType_t MPU_xStreamBufferSetTriggerLevel( StreamBufferHandle_t xStreamBuffer,
|
BaseType_t MPU_xStreamBufferSetTriggerLevel( StreamBufferHandle_t xStreamBuffer,
|
||||||
size_t xTriggerLevel ) /* FREERTOS_SYSTEM_CALL */
|
size_t xTriggerLevel ) /* FREERTOS_SYSTEM_CALL */
|
||||||
{
|
{
|
||||||
|
@ -2369,9 +2398,10 @@
|
||||||
|
|
||||||
return xReturn;
|
return xReturn;
|
||||||
}
|
}
|
||||||
|
#endif /* #if ( configUSE_STREAM_BUFFERS == 1 ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
#if ( configSUPPORT_DYNAMIC_ALLOCATION == 1 )
|
#if ( ( configSUPPORT_DYNAMIC_ALLOCATION == 1 ) && ( configUSE_STREAM_BUFFERS == 1 ) )
|
||||||
StreamBufferHandle_t MPU_xStreamBufferGenericCreate( size_t xBufferSizeBytes,
|
StreamBufferHandle_t MPU_xStreamBufferGenericCreate( size_t xBufferSizeBytes,
|
||||||
size_t xTriggerLevelBytes,
|
size_t xTriggerLevelBytes,
|
||||||
BaseType_t xIsMessageBuffer,
|
BaseType_t xIsMessageBuffer,
|
||||||
|
@ -2422,10 +2452,10 @@
|
||||||
|
|
||||||
return xReturn;
|
return xReturn;
|
||||||
}
|
}
|
||||||
#endif /* configSUPPORT_DYNAMIC_ALLOCATION */
|
#endif /* #if ( ( configSUPPORT_DYNAMIC_ALLOCATION == 1 ) && ( configUSE_STREAM_BUFFERS == 1 ) ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
#if ( configSUPPORT_STATIC_ALLOCATION == 1 )
|
#if ( ( configSUPPORT_STATIC_ALLOCATION == 1 ) && ( configUSE_STREAM_BUFFERS == 1 ) )
|
||||||
StreamBufferHandle_t MPU_xStreamBufferGenericCreateStatic( size_t xBufferSizeBytes,
|
StreamBufferHandle_t MPU_xStreamBufferGenericCreateStatic( size_t xBufferSizeBytes,
|
||||||
size_t xTriggerLevelBytes,
|
size_t xTriggerLevelBytes,
|
||||||
BaseType_t xIsMessageBuffer,
|
BaseType_t xIsMessageBuffer,
|
||||||
|
@ -2482,7 +2512,7 @@
|
||||||
|
|
||||||
return xReturn;
|
return xReturn;
|
||||||
}
|
}
|
||||||
#endif /* configSUPPORT_STATIC_ALLOCATION */
|
#endif /* #if ( ( configSUPPORT_STATIC_ALLOCATION == 1 ) && ( configUSE_STREAM_BUFFERS == 1 ) ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -215,6 +215,7 @@
|
||||||
#define MPU_GetTaskHandleAtIndex( lIndex ) ( TaskHandle_t ) MPU_GetHandleAtIndex( ( lIndex ), KERNEL_OBJECT_TYPE_TASK )
|
#define MPU_GetTaskHandleAtIndex( lIndex ) ( TaskHandle_t ) MPU_GetHandleAtIndex( ( lIndex ), KERNEL_OBJECT_TYPE_TASK )
|
||||||
#define MPU_GetIndexForTaskHandle( xHandle ) MPU_GetIndexForHandle( ( OpaqueObjectHandle_t ) ( xHandle ), KERNEL_OBJECT_TYPE_TASK )
|
#define MPU_GetIndexForTaskHandle( xHandle ) MPU_GetIndexForHandle( ( OpaqueObjectHandle_t ) ( xHandle ), KERNEL_OBJECT_TYPE_TASK )
|
||||||
|
|
||||||
|
#if ( configUSE_EVENT_GROUPS == 1 )
|
||||||
/*
|
/*
|
||||||
* Wrappers to keep all the casting in one place for Event Group APIs.
|
* Wrappers to keep all the casting in one place for Event Group APIs.
|
||||||
*/
|
*/
|
||||||
|
@ -222,6 +223,9 @@
|
||||||
#define MPU_GetEventGroupHandleAtIndex( lIndex ) ( EventGroupHandle_t ) MPU_GetHandleAtIndex( ( lIndex ), KERNEL_OBJECT_TYPE_EVENT_GROUP )
|
#define MPU_GetEventGroupHandleAtIndex( lIndex ) ( EventGroupHandle_t ) MPU_GetHandleAtIndex( ( lIndex ), KERNEL_OBJECT_TYPE_EVENT_GROUP )
|
||||||
#define MPU_GetIndexForEventGroupHandle( xHandle ) MPU_GetIndexForHandle( ( OpaqueObjectHandle_t ) ( xHandle ), KERNEL_OBJECT_TYPE_EVENT_GROUP )
|
#define MPU_GetIndexForEventGroupHandle( xHandle ) MPU_GetIndexForHandle( ( OpaqueObjectHandle_t ) ( xHandle ), KERNEL_OBJECT_TYPE_EVENT_GROUP )
|
||||||
|
|
||||||
|
#endif /* #if ( configUSE_EVENT_GROUPS == 1 ) */
|
||||||
|
|
||||||
|
#if ( configUSE_STREAM_BUFFERS == 1 )
|
||||||
/*
|
/*
|
||||||
* Wrappers to keep all the casting in one place for Stream Buffer APIs.
|
* Wrappers to keep all the casting in one place for Stream Buffer APIs.
|
||||||
*/
|
*/
|
||||||
|
@ -229,8 +233,9 @@
|
||||||
#define MPU_GetStreamBufferHandleAtIndex( lIndex ) ( StreamBufferHandle_t ) MPU_GetHandleAtIndex( ( lIndex ), KERNEL_OBJECT_TYPE_STREAM_BUFFER )
|
#define MPU_GetStreamBufferHandleAtIndex( lIndex ) ( StreamBufferHandle_t ) MPU_GetHandleAtIndex( ( lIndex ), KERNEL_OBJECT_TYPE_STREAM_BUFFER )
|
||||||
#define MPU_GetIndexForStreamBufferHandle( xHandle ) MPU_GetIndexForHandle( ( OpaqueObjectHandle_t ) ( xHandle ), KERNEL_OBJECT_TYPE_STREAM_BUFFER )
|
#define MPU_GetIndexForStreamBufferHandle( xHandle ) MPU_GetIndexForHandle( ( OpaqueObjectHandle_t ) ( xHandle ), KERNEL_OBJECT_TYPE_STREAM_BUFFER )
|
||||||
|
|
||||||
#if ( configUSE_TIMERS == 1 )
|
#endif /* #if ( configUSE_STREAM_BUFFERS == 1 ) */
|
||||||
|
|
||||||
|
#if ( configUSE_TIMERS == 1 )
|
||||||
/*
|
/*
|
||||||
* Wrappers to keep all the casting in one place for Timer APIs.
|
* Wrappers to keep all the casting in one place for Timer APIs.
|
||||||
*/
|
*/
|
||||||
|
@ -3867,6 +3872,8 @@
|
||||||
/* MPU wrappers for event group APIs. */
|
/* MPU wrappers for event group APIs. */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
|
#if ( configUSE_EVENT_GROUPS == 1 )
|
||||||
|
|
||||||
EventBits_t MPU_xEventGroupWaitBits( EventGroupHandle_t xEventGroup,
|
EventBits_t MPU_xEventGroupWaitBits( EventGroupHandle_t xEventGroup,
|
||||||
const EventBits_t uxBitsToWaitFor,
|
const EventBits_t uxBitsToWaitFor,
|
||||||
const BaseType_t xClearOnExit,
|
const BaseType_t xClearOnExit,
|
||||||
|
@ -3938,8 +3945,12 @@
|
||||||
|
|
||||||
return xReturn;
|
return xReturn;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endif /* #if ( configUSE_EVENT_GROUPS == 1 ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
|
#if ( configUSE_EVENT_GROUPS == 1 )
|
||||||
|
|
||||||
EventBits_t MPU_xEventGroupClearBitsImpl( EventGroupHandle_t xEventGroup,
|
EventBits_t MPU_xEventGroupClearBitsImpl( EventGroupHandle_t xEventGroup,
|
||||||
const EventBits_t uxBitsToClear ) PRIVILEGED_FUNCTION;
|
const EventBits_t uxBitsToClear ) PRIVILEGED_FUNCTION;
|
||||||
|
|
||||||
|
@ -3973,8 +3984,12 @@
|
||||||
|
|
||||||
return xReturn;
|
return xReturn;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endif /* #if ( configUSE_EVENT_GROUPS == 1 ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
|
#if ( configUSE_EVENT_GROUPS == 1 )
|
||||||
|
|
||||||
EventBits_t MPU_xEventGroupSetBitsImpl( EventGroupHandle_t xEventGroup,
|
EventBits_t MPU_xEventGroupSetBitsImpl( EventGroupHandle_t xEventGroup,
|
||||||
const EventBits_t uxBitsToSet ) PRIVILEGED_FUNCTION;
|
const EventBits_t uxBitsToSet ) PRIVILEGED_FUNCTION;
|
||||||
|
|
||||||
|
@ -4008,8 +4023,12 @@
|
||||||
|
|
||||||
return xReturn;
|
return xReturn;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endif /* #if ( configUSE_EVENT_GROUPS == 1 ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
|
#if ( configUSE_EVENT_GROUPS == 1 )
|
||||||
|
|
||||||
EventBits_t MPU_xEventGroupSyncImpl( EventGroupHandle_t xEventGroup,
|
EventBits_t MPU_xEventGroupSyncImpl( EventGroupHandle_t xEventGroup,
|
||||||
const EventBits_t uxBitsToSet,
|
const EventBits_t uxBitsToSet,
|
||||||
const EventBits_t uxBitsToWaitFor,
|
const EventBits_t uxBitsToWaitFor,
|
||||||
|
@ -4052,9 +4071,11 @@
|
||||||
|
|
||||||
return xReturn;
|
return xReturn;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endif /* #if ( configUSE_EVENT_GROUPS == 1 ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
#if ( configUSE_TRACE_FACILITY == 1 )
|
#if ( ( configUSE_EVENT_GROUPS == 1 ) && ( configUSE_TRACE_FACILITY == 1 ) )
|
||||||
|
|
||||||
UBaseType_t MPU_uxEventGroupGetNumberImpl( void * xEventGroup ) PRIVILEGED_FUNCTION;
|
UBaseType_t MPU_uxEventGroupGetNumberImpl( void * xEventGroup ) PRIVILEGED_FUNCTION;
|
||||||
|
|
||||||
|
@ -4085,10 +4106,10 @@
|
||||||
return xReturn;
|
return xReturn;
|
||||||
}
|
}
|
||||||
|
|
||||||
#endif /*( configUSE_TRACE_FACILITY == 1 )*/
|
#endif /* #if ( ( configUSE_EVENT_GROUPS == 1 ) && ( configUSE_TRACE_FACILITY == 1 ) ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
#if ( configUSE_TRACE_FACILITY == 1 )
|
#if ( ( configUSE_EVENT_GROUPS == 1 ) && ( configUSE_TRACE_FACILITY == 1 ) )
|
||||||
|
|
||||||
void MPU_vEventGroupSetNumberImpl( void * xEventGroup,
|
void MPU_vEventGroupSetNumberImpl( void * xEventGroup,
|
||||||
UBaseType_t uxEventGroupNumber ) PRIVILEGED_FUNCTION;
|
UBaseType_t uxEventGroupNumber ) PRIVILEGED_FUNCTION;
|
||||||
|
@ -4118,7 +4139,7 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
#endif /*( configUSE_TRACE_FACILITY == 1 )*/
|
#endif /* #if ( ( configUSE_EVENT_GROUPS == 1 ) && ( configUSE_TRACE_FACILITY == 1 ) ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
/* Privileged only wrappers for Event Group APIs. These are needed so that
|
/* Privileged only wrappers for Event Group APIs. These are needed so that
|
||||||
|
@ -4126,7 +4147,7 @@
|
||||||
* with all the APIs. */
|
* with all the APIs. */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
#if ( configSUPPORT_DYNAMIC_ALLOCATION == 1 )
|
#if ( ( configSUPPORT_DYNAMIC_ALLOCATION == 1 ) && ( configUSE_EVENT_GROUPS == 1 ) )
|
||||||
|
|
||||||
EventGroupHandle_t MPU_xEventGroupCreate( void ) /* PRIVILEGED_FUNCTION */
|
EventGroupHandle_t MPU_xEventGroupCreate( void ) /* PRIVILEGED_FUNCTION */
|
||||||
{
|
{
|
||||||
|
@ -4154,10 +4175,10 @@
|
||||||
return xExternalEventGroupHandle;
|
return xExternalEventGroupHandle;
|
||||||
}
|
}
|
||||||
|
|
||||||
#endif /* if ( configSUPPORT_DYNAMIC_ALLOCATION == 1 ) */
|
#endif /* #if ( ( configSUPPORT_DYNAMIC_ALLOCATION == 1 ) && ( configUSE_EVENT_GROUPS == 1 ) ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
#if ( configSUPPORT_STATIC_ALLOCATION == 1 )
|
#if ( ( configSUPPORT_STATIC_ALLOCATION == 1 ) && ( configUSE_EVENT_GROUPS == 1 ) )
|
||||||
|
|
||||||
EventGroupHandle_t MPU_xEventGroupCreateStatic( StaticEventGroup_t * pxEventGroupBuffer ) /* PRIVILEGED_FUNCTION */
|
EventGroupHandle_t MPU_xEventGroupCreateStatic( StaticEventGroup_t * pxEventGroupBuffer ) /* PRIVILEGED_FUNCTION */
|
||||||
{
|
{
|
||||||
|
@ -4185,9 +4206,11 @@
|
||||||
return xExternalEventGroupHandle;
|
return xExternalEventGroupHandle;
|
||||||
}
|
}
|
||||||
|
|
||||||
#endif /* if ( configSUPPORT_STATIC_ALLOCATION == 1 ) */
|
#endif /* #if ( ( configSUPPORT_STATIC_ALLOCATION == 1 ) && ( configUSE_EVENT_GROUPS == 1 ) ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
|
#if ( configUSE_EVENT_GROUPS == 1 )
|
||||||
|
|
||||||
void MPU_vEventGroupDelete( EventGroupHandle_t xEventGroup ) /* PRIVILEGED_FUNCTION */
|
void MPU_vEventGroupDelete( EventGroupHandle_t xEventGroup ) /* PRIVILEGED_FUNCTION */
|
||||||
{
|
{
|
||||||
EventGroupHandle_t xInternalEventGroupHandle = NULL;
|
EventGroupHandle_t xInternalEventGroupHandle = NULL;
|
||||||
|
@ -4206,9 +4229,11 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endif /* #if ( configUSE_EVENT_GROUPS == 1 ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
#if ( configSUPPORT_STATIC_ALLOCATION == 1 )
|
#if ( ( configSUPPORT_STATIC_ALLOCATION == 1 ) && ( configUSE_EVENT_GROUPS == 1 ) )
|
||||||
|
|
||||||
BaseType_t MPU_xEventGroupGetStaticBuffer( EventGroupHandle_t xEventGroup,
|
BaseType_t MPU_xEventGroupGetStaticBuffer( EventGroupHandle_t xEventGroup,
|
||||||
StaticEventGroup_t ** ppxEventGroupBuffer ) /* PRIVILEGED_FUNCTION */
|
StaticEventGroup_t ** ppxEventGroupBuffer ) /* PRIVILEGED_FUNCTION */
|
||||||
|
@ -4232,10 +4257,10 @@
|
||||||
return xReturn;
|
return xReturn;
|
||||||
}
|
}
|
||||||
|
|
||||||
#endif /* if ( configSUPPORT_STATIC_ALLOCATION == 1 ) */
|
#endif /* #if ( ( configSUPPORT_STATIC_ALLOCATION == 1 ) && ( configUSE_EVENT_GROUPS == 1 ) ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
#if ( ( configUSE_TRACE_FACILITY == 1 ) && ( INCLUDE_xTimerPendFunctionCall == 1 ) && ( configUSE_TIMERS == 1 ) )
|
#if ( ( configUSE_EVENT_GROUPS == 1 ) && ( configUSE_TRACE_FACILITY == 1 ) && ( INCLUDE_xTimerPendFunctionCall == 1 ) && ( configUSE_TIMERS == 1 ) )
|
||||||
|
|
||||||
BaseType_t MPU_xEventGroupClearBitsFromISR( EventGroupHandle_t xEventGroup,
|
BaseType_t MPU_xEventGroupClearBitsFromISR( EventGroupHandle_t xEventGroup,
|
||||||
const EventBits_t uxBitsToClear ) /* PRIVILEGED_FUNCTION */
|
const EventBits_t uxBitsToClear ) /* PRIVILEGED_FUNCTION */
|
||||||
|
@ -4259,10 +4284,10 @@
|
||||||
return xReturn;
|
return xReturn;
|
||||||
}
|
}
|
||||||
|
|
||||||
#endif /* #if ( ( configUSE_TRACE_FACILITY == 1 ) && ( INCLUDE_xTimerPendFunctionCall == 1 ) && ( configUSE_TIMERS == 1 ) ) */
|
#endif /* #if ( ( configUSE_EVENT_GROUPS == 1 ) && ( configUSE_TRACE_FACILITY == 1 ) && ( INCLUDE_xTimerPendFunctionCall == 1 ) && ( configUSE_TIMERS == 1 ) ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
#if ( ( configUSE_TRACE_FACILITY == 1 ) && ( INCLUDE_xTimerPendFunctionCall == 1 ) && ( configUSE_TIMERS == 1 ) )
|
#if ( ( configUSE_EVENT_GROUPS == 1 ) && ( configUSE_TRACE_FACILITY == 1 ) && ( INCLUDE_xTimerPendFunctionCall == 1 ) && ( configUSE_TIMERS == 1 ) )
|
||||||
|
|
||||||
BaseType_t MPU_xEventGroupSetBitsFromISR( EventGroupHandle_t xEventGroup,
|
BaseType_t MPU_xEventGroupSetBitsFromISR( EventGroupHandle_t xEventGroup,
|
||||||
const EventBits_t uxBitsToSet,
|
const EventBits_t uxBitsToSet,
|
||||||
|
@ -4287,9 +4312,11 @@
|
||||||
return xReturn;
|
return xReturn;
|
||||||
}
|
}
|
||||||
|
|
||||||
#endif /* #if ( ( configUSE_TRACE_FACILITY == 1 ) && ( INCLUDE_xTimerPendFunctionCall == 1 ) && ( configUSE_TIMERS == 1 ) ) */
|
#endif /* #if ( ( configUSE_EVENT_GROUPS == 1 ) && ( configUSE_TRACE_FACILITY == 1 ) && ( INCLUDE_xTimerPendFunctionCall == 1 ) && ( configUSE_TIMERS == 1 ) ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
|
#if ( configUSE_EVENT_GROUPS == 1 )
|
||||||
|
|
||||||
EventBits_t MPU_xEventGroupGetBitsFromISR( EventGroupHandle_t xEventGroup ) /* PRIVILEGED_FUNCTION */
|
EventBits_t MPU_xEventGroupGetBitsFromISR( EventGroupHandle_t xEventGroup ) /* PRIVILEGED_FUNCTION */
|
||||||
{
|
{
|
||||||
EventBits_t xReturn = 0;
|
EventBits_t xReturn = 0;
|
||||||
|
@ -4310,12 +4337,16 @@
|
||||||
|
|
||||||
return xReturn;
|
return xReturn;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endif /* #if ( configUSE_EVENT_GROUPS == 1 ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
/* MPU wrappers for stream buffer APIs. */
|
/* MPU wrappers for stream buffer APIs. */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
|
#if ( configUSE_STREAM_BUFFERS == 1 )
|
||||||
|
|
||||||
size_t MPU_xStreamBufferSendImpl( StreamBufferHandle_t xStreamBuffer,
|
size_t MPU_xStreamBufferSendImpl( StreamBufferHandle_t xStreamBuffer,
|
||||||
const void * pvTxData,
|
const void * pvTxData,
|
||||||
size_t xDataLengthBytes,
|
size_t xDataLengthBytes,
|
||||||
|
@ -4361,8 +4392,12 @@
|
||||||
|
|
||||||
return xReturn;
|
return xReturn;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endif /* #if ( configUSE_STREAM_BUFFERS == 1 ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
|
#if ( configUSE_STREAM_BUFFERS == 1 )
|
||||||
|
|
||||||
size_t MPU_xStreamBufferReceiveImpl( StreamBufferHandle_t xStreamBuffer,
|
size_t MPU_xStreamBufferReceiveImpl( StreamBufferHandle_t xStreamBuffer,
|
||||||
void * pvRxData,
|
void * pvRxData,
|
||||||
size_t xBufferLengthBytes,
|
size_t xBufferLengthBytes,
|
||||||
|
@ -4408,8 +4443,12 @@
|
||||||
|
|
||||||
return xReturn;
|
return xReturn;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endif /* #if ( configUSE_STREAM_BUFFERS == 1 ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
|
#if ( configUSE_STREAM_BUFFERS == 1 )
|
||||||
|
|
||||||
BaseType_t MPU_xStreamBufferIsFullImpl( StreamBufferHandle_t xStreamBuffer ) PRIVILEGED_FUNCTION;
|
BaseType_t MPU_xStreamBufferIsFullImpl( StreamBufferHandle_t xStreamBuffer ) PRIVILEGED_FUNCTION;
|
||||||
|
|
||||||
BaseType_t MPU_xStreamBufferIsFullImpl( StreamBufferHandle_t xStreamBuffer ) /* PRIVILEGED_FUNCTION */
|
BaseType_t MPU_xStreamBufferIsFullImpl( StreamBufferHandle_t xStreamBuffer ) /* PRIVILEGED_FUNCTION */
|
||||||
|
@ -4438,8 +4477,12 @@
|
||||||
|
|
||||||
return xReturn;
|
return xReturn;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endif /* #if ( configUSE_STREAM_BUFFERS == 1 ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
|
#if ( configUSE_STREAM_BUFFERS == 1 )
|
||||||
|
|
||||||
BaseType_t MPU_xStreamBufferIsEmptyImpl( StreamBufferHandle_t xStreamBuffer ) PRIVILEGED_FUNCTION;
|
BaseType_t MPU_xStreamBufferIsEmptyImpl( StreamBufferHandle_t xStreamBuffer ) PRIVILEGED_FUNCTION;
|
||||||
|
|
||||||
BaseType_t MPU_xStreamBufferIsEmptyImpl( StreamBufferHandle_t xStreamBuffer ) /* PRIVILEGED_FUNCTION */
|
BaseType_t MPU_xStreamBufferIsEmptyImpl( StreamBufferHandle_t xStreamBuffer ) /* PRIVILEGED_FUNCTION */
|
||||||
|
@ -4468,8 +4511,12 @@
|
||||||
|
|
||||||
return xReturn;
|
return xReturn;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endif /* #if ( configUSE_STREAM_BUFFERS == 1 ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
|
#if ( configUSE_STREAM_BUFFERS == 1 )
|
||||||
|
|
||||||
size_t MPU_xStreamBufferSpacesAvailableImpl( StreamBufferHandle_t xStreamBuffer ) PRIVILEGED_FUNCTION;
|
size_t MPU_xStreamBufferSpacesAvailableImpl( StreamBufferHandle_t xStreamBuffer ) PRIVILEGED_FUNCTION;
|
||||||
|
|
||||||
size_t MPU_xStreamBufferSpacesAvailableImpl( StreamBufferHandle_t xStreamBuffer ) /* PRIVILEGED_FUNCTION */
|
size_t MPU_xStreamBufferSpacesAvailableImpl( StreamBufferHandle_t xStreamBuffer ) /* PRIVILEGED_FUNCTION */
|
||||||
|
@ -4498,8 +4545,12 @@
|
||||||
|
|
||||||
return xReturn;
|
return xReturn;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endif /* #if ( configUSE_STREAM_BUFFERS == 1 ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
|
#if ( configUSE_STREAM_BUFFERS == 1 )
|
||||||
|
|
||||||
size_t MPU_xStreamBufferBytesAvailableImpl( StreamBufferHandle_t xStreamBuffer ) PRIVILEGED_FUNCTION;
|
size_t MPU_xStreamBufferBytesAvailableImpl( StreamBufferHandle_t xStreamBuffer ) PRIVILEGED_FUNCTION;
|
||||||
|
|
||||||
size_t MPU_xStreamBufferBytesAvailableImpl( StreamBufferHandle_t xStreamBuffer ) /* PRIVILEGED_FUNCTION */
|
size_t MPU_xStreamBufferBytesAvailableImpl( StreamBufferHandle_t xStreamBuffer ) /* PRIVILEGED_FUNCTION */
|
||||||
|
@ -4528,8 +4579,12 @@
|
||||||
|
|
||||||
return xReturn;
|
return xReturn;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endif /* #if ( configUSE_STREAM_BUFFERS == 1 ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
|
#if ( configUSE_STREAM_BUFFERS == 1 )
|
||||||
|
|
||||||
BaseType_t MPU_xStreamBufferSetTriggerLevelImpl( StreamBufferHandle_t xStreamBuffer,
|
BaseType_t MPU_xStreamBufferSetTriggerLevelImpl( StreamBufferHandle_t xStreamBuffer,
|
||||||
size_t xTriggerLevel ) PRIVILEGED_FUNCTION;
|
size_t xTriggerLevel ) PRIVILEGED_FUNCTION;
|
||||||
|
|
||||||
|
@ -4560,8 +4615,12 @@
|
||||||
|
|
||||||
return xReturn;
|
return xReturn;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endif /* #if ( configUSE_STREAM_BUFFERS == 1 ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
|
#if ( configUSE_STREAM_BUFFERS == 1 )
|
||||||
|
|
||||||
size_t MPU_xStreamBufferNextMessageLengthBytesImpl( StreamBufferHandle_t xStreamBuffer ) PRIVILEGED_FUNCTION;
|
size_t MPU_xStreamBufferNextMessageLengthBytesImpl( StreamBufferHandle_t xStreamBuffer ) PRIVILEGED_FUNCTION;
|
||||||
|
|
||||||
size_t MPU_xStreamBufferNextMessageLengthBytesImpl( StreamBufferHandle_t xStreamBuffer ) /* PRIVILEGED_FUNCTION */
|
size_t MPU_xStreamBufferNextMessageLengthBytesImpl( StreamBufferHandle_t xStreamBuffer ) /* PRIVILEGED_FUNCTION */
|
||||||
|
@ -4590,6 +4649,8 @@
|
||||||
|
|
||||||
return xReturn;
|
return xReturn;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endif /* #if ( configUSE_STREAM_BUFFERS == 1 ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
/* Privileged only wrappers for Stream Buffer APIs. These are needed so that
|
/* Privileged only wrappers for Stream Buffer APIs. These are needed so that
|
||||||
|
@ -4597,7 +4658,7 @@
|
||||||
* with all the APIs. */
|
* with all the APIs. */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
#if ( configSUPPORT_DYNAMIC_ALLOCATION == 1 )
|
#if ( ( configSUPPORT_DYNAMIC_ALLOCATION == 1 ) && ( configUSE_STREAM_BUFFERS == 1 ) )
|
||||||
|
|
||||||
StreamBufferHandle_t MPU_xStreamBufferGenericCreate( size_t xBufferSizeBytes,
|
StreamBufferHandle_t MPU_xStreamBufferGenericCreate( size_t xBufferSizeBytes,
|
||||||
size_t xTriggerLevelBytes,
|
size_t xTriggerLevelBytes,
|
||||||
|
@ -4649,10 +4710,10 @@
|
||||||
return xExternalStreamBufferHandle;
|
return xExternalStreamBufferHandle;
|
||||||
}
|
}
|
||||||
|
|
||||||
#endif /* configSUPPORT_DYNAMIC_ALLOCATION */
|
#endif /* #if ( ( configSUPPORT_DYNAMIC_ALLOCATION == 1 ) && ( configUSE_STREAM_BUFFERS == 1 ) ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
#if ( configSUPPORT_STATIC_ALLOCATION == 1 )
|
#if ( ( configSUPPORT_STATIC_ALLOCATION == 1 ) && ( configUSE_STREAM_BUFFERS == 1 ) )
|
||||||
|
|
||||||
StreamBufferHandle_t MPU_xStreamBufferGenericCreateStatic( size_t xBufferSizeBytes,
|
StreamBufferHandle_t MPU_xStreamBufferGenericCreateStatic( size_t xBufferSizeBytes,
|
||||||
size_t xTriggerLevelBytes,
|
size_t xTriggerLevelBytes,
|
||||||
|
@ -4708,9 +4769,11 @@
|
||||||
return xExternalStreamBufferHandle;
|
return xExternalStreamBufferHandle;
|
||||||
}
|
}
|
||||||
|
|
||||||
#endif /* configSUPPORT_STATIC_ALLOCATION */
|
#endif /* #if ( ( configSUPPORT_STATIC_ALLOCATION == 1 ) && ( configUSE_STREAM_BUFFERS == 1 ) ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
|
#if ( configUSE_STREAM_BUFFERS == 1 )
|
||||||
|
|
||||||
void MPU_vStreamBufferDelete( StreamBufferHandle_t xStreamBuffer ) /* PRIVILEGED_FUNCTION */
|
void MPU_vStreamBufferDelete( StreamBufferHandle_t xStreamBuffer ) /* PRIVILEGED_FUNCTION */
|
||||||
{
|
{
|
||||||
StreamBufferHandle_t xInternalStreamBufferHandle = NULL;
|
StreamBufferHandle_t xInternalStreamBufferHandle = NULL;
|
||||||
|
@ -4730,8 +4793,12 @@
|
||||||
MPU_SetIndexFreeInKernelObjectPool( CONVERT_TO_INTERNAL_INDEX( lIndex ) );
|
MPU_SetIndexFreeInKernelObjectPool( CONVERT_TO_INTERNAL_INDEX( lIndex ) );
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endif /* #if ( configUSE_STREAM_BUFFERS == 1 ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
|
#if ( configUSE_STREAM_BUFFERS == 1 )
|
||||||
|
|
||||||
BaseType_t MPU_xStreamBufferReset( StreamBufferHandle_t xStreamBuffer ) /* PRIVILEGED_FUNCTION */
|
BaseType_t MPU_xStreamBufferReset( StreamBufferHandle_t xStreamBuffer ) /* PRIVILEGED_FUNCTION */
|
||||||
{
|
{
|
||||||
BaseType_t xReturn = pdFALSE;
|
BaseType_t xReturn = pdFALSE;
|
||||||
|
@ -4752,9 +4819,11 @@
|
||||||
|
|
||||||
return xReturn;
|
return xReturn;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endif /* #if ( configUSE_STREAM_BUFFERS == 1 ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
#if ( configSUPPORT_STATIC_ALLOCATION == 1 )
|
#if ( ( configSUPPORT_STATIC_ALLOCATION == 1 ) && ( configUSE_STREAM_BUFFERS == 1 ) )
|
||||||
|
|
||||||
BaseType_t MPU_xStreamBufferGetStaticBuffers( StreamBufferHandle_t xStreamBuffers,
|
BaseType_t MPU_xStreamBufferGetStaticBuffers( StreamBufferHandle_t xStreamBuffers,
|
||||||
uint8_t * ppucStreamBufferStorageArea,
|
uint8_t * ppucStreamBufferStorageArea,
|
||||||
|
@ -4779,9 +4848,11 @@
|
||||||
return xReturn;
|
return xReturn;
|
||||||
}
|
}
|
||||||
|
|
||||||
#endif /* if ( configSUPPORT_STATIC_ALLOCATION == 1 ) */
|
#endif /* #if ( ( configSUPPORT_STATIC_ALLOCATION == 1 ) && ( configUSE_STREAM_BUFFERS == 1 ) ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
|
#if ( configUSE_STREAM_BUFFERS == 1 )
|
||||||
|
|
||||||
size_t MPU_xStreamBufferSendFromISR( StreamBufferHandle_t xStreamBuffer,
|
size_t MPU_xStreamBufferSendFromISR( StreamBufferHandle_t xStreamBuffer,
|
||||||
const void * pvTxData,
|
const void * pvTxData,
|
||||||
size_t xDataLengthBytes,
|
size_t xDataLengthBytes,
|
||||||
|
@ -4805,8 +4876,12 @@
|
||||||
|
|
||||||
return xReturn;
|
return xReturn;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endif /* #if ( configUSE_STREAM_BUFFERS == 1 ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
|
#if ( configUSE_STREAM_BUFFERS == 1 )
|
||||||
|
|
||||||
size_t MPU_xStreamBufferReceiveFromISR( StreamBufferHandle_t xStreamBuffer,
|
size_t MPU_xStreamBufferReceiveFromISR( StreamBufferHandle_t xStreamBuffer,
|
||||||
void * pvRxData,
|
void * pvRxData,
|
||||||
size_t xBufferLengthBytes,
|
size_t xBufferLengthBytes,
|
||||||
|
@ -4830,8 +4905,12 @@
|
||||||
|
|
||||||
return xReturn;
|
return xReturn;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endif /* #if ( configUSE_STREAM_BUFFERS == 1 ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
|
#if ( configUSE_STREAM_BUFFERS == 1 )
|
||||||
|
|
||||||
BaseType_t MPU_xStreamBufferSendCompletedFromISR( StreamBufferHandle_t xStreamBuffer,
|
BaseType_t MPU_xStreamBufferSendCompletedFromISR( StreamBufferHandle_t xStreamBuffer,
|
||||||
BaseType_t * pxHigherPriorityTaskWoken ) /* PRIVILEGED_FUNCTION */
|
BaseType_t * pxHigherPriorityTaskWoken ) /* PRIVILEGED_FUNCTION */
|
||||||
{
|
{
|
||||||
|
@ -4853,8 +4932,12 @@
|
||||||
|
|
||||||
return xReturn;
|
return xReturn;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endif /* #if ( configUSE_STREAM_BUFFERS == 1 ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
|
#if ( configUSE_STREAM_BUFFERS == 1 )
|
||||||
|
|
||||||
BaseType_t MPU_xStreamBufferReceiveCompletedFromISR( StreamBufferHandle_t xStreamBuffer,
|
BaseType_t MPU_xStreamBufferReceiveCompletedFromISR( StreamBufferHandle_t xStreamBuffer,
|
||||||
BaseType_t * pxHigherPriorityTaskWoken ) /*PRIVILEGED_FUNCTION */
|
BaseType_t * pxHigherPriorityTaskWoken ) /*PRIVILEGED_FUNCTION */
|
||||||
{
|
{
|
||||||
|
@ -4877,6 +4960,8 @@
|
||||||
return xReturn;
|
return xReturn;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endif /* #if ( configUSE_STREAM_BUFFERS == 1 ) */
|
||||||
|
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
/* Functions that the application writer wants to execute in privileged mode
|
/* Functions that the application writer wants to execute in privileged mode
|
||||||
|
@ -4909,7 +4994,11 @@
|
||||||
( UBaseType_t ) 0, /* SYSTEM_CALL_xTimerGenericCommandFromTask. */
|
( UBaseType_t ) 0, /* SYSTEM_CALL_xTimerGenericCommandFromTask. */
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#if ( configUSE_EVENT_GROUPS == 1 )
|
||||||
( UBaseType_t ) MPU_xEventGroupWaitBitsImpl, /* SYSTEM_CALL_xEventGroupWaitBits. */
|
( UBaseType_t ) MPU_xEventGroupWaitBitsImpl, /* SYSTEM_CALL_xEventGroupWaitBits. */
|
||||||
|
#else
|
||||||
|
( UBaseType_t ) 0, /* SYSTEM_CALL_xEventGroupWaitBits. */
|
||||||
|
#endif
|
||||||
|
|
||||||
/* The system calls above this line take 5 parameters. */
|
/* The system calls above this line take 5 parameters. */
|
||||||
|
|
||||||
|
@ -5104,6 +5193,7 @@
|
||||||
( UBaseType_t ) 0, /* SYSTEM_CALL_xTimerGetExpiryTime. */
|
( UBaseType_t ) 0, /* SYSTEM_CALL_xTimerGetExpiryTime. */
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#if ( configUSE_EVENT_GROUPS == 1 )
|
||||||
( UBaseType_t ) MPU_xEventGroupClearBitsImpl, /* SYSTEM_CALL_xEventGroupClearBits. */
|
( UBaseType_t ) MPU_xEventGroupClearBitsImpl, /* SYSTEM_CALL_xEventGroupClearBits. */
|
||||||
( UBaseType_t ) MPU_xEventGroupSetBitsImpl, /* SYSTEM_CALL_xEventGroupSetBits. */
|
( UBaseType_t ) MPU_xEventGroupSetBitsImpl, /* SYSTEM_CALL_xEventGroupSetBits. */
|
||||||
( UBaseType_t ) MPU_xEventGroupSyncImpl, /* SYSTEM_CALL_xEventGroupSync. */
|
( UBaseType_t ) MPU_xEventGroupSyncImpl, /* SYSTEM_CALL_xEventGroupSync. */
|
||||||
|
@ -5115,7 +5205,15 @@
|
||||||
( UBaseType_t ) 0, /* SYSTEM_CALL_uxEventGroupGetNumber. */
|
( UBaseType_t ) 0, /* SYSTEM_CALL_uxEventGroupGetNumber. */
|
||||||
( UBaseType_t ) 0, /* SYSTEM_CALL_vEventGroupSetNumber. */
|
( UBaseType_t ) 0, /* SYSTEM_CALL_vEventGroupSetNumber. */
|
||||||
#endif
|
#endif
|
||||||
|
#else
|
||||||
|
( UBaseType_t ) 0, /* SYSTEM_CALL_xEventGroupClearBits. */
|
||||||
|
( UBaseType_t ) 0, /* SYSTEM_CALL_xEventGroupSetBits. */
|
||||||
|
( UBaseType_t ) 0, /* SYSTEM_CALL_xEventGroupSync. */
|
||||||
|
( UBaseType_t ) 0, /* SYSTEM_CALL_uxEventGroupGetNumber. */
|
||||||
|
( UBaseType_t ) 0, /* SYSTEM_CALL_vEventGroupSetNumber. */
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#if ( configUSE_STREAM_BUFFERS == 1 )
|
||||||
( UBaseType_t ) MPU_xStreamBufferSendImpl, /* SYSTEM_CALL_xStreamBufferSend. */
|
( UBaseType_t ) MPU_xStreamBufferSendImpl, /* SYSTEM_CALL_xStreamBufferSend. */
|
||||||
( UBaseType_t ) MPU_xStreamBufferReceiveImpl, /* SYSTEM_CALL_xStreamBufferReceive. */
|
( UBaseType_t ) MPU_xStreamBufferReceiveImpl, /* SYSTEM_CALL_xStreamBufferReceive. */
|
||||||
( UBaseType_t ) MPU_xStreamBufferIsFullImpl, /* SYSTEM_CALL_xStreamBufferIsFull. */
|
( UBaseType_t ) MPU_xStreamBufferIsFullImpl, /* SYSTEM_CALL_xStreamBufferIsFull. */
|
||||||
|
@ -5124,6 +5222,17 @@
|
||||||
( UBaseType_t ) MPU_xStreamBufferBytesAvailableImpl, /* SYSTEM_CALL_xStreamBufferBytesAvailable. */
|
( UBaseType_t ) MPU_xStreamBufferBytesAvailableImpl, /* SYSTEM_CALL_xStreamBufferBytesAvailable. */
|
||||||
( UBaseType_t ) MPU_xStreamBufferSetTriggerLevelImpl, /* SYSTEM_CALL_xStreamBufferSetTriggerLevel. */
|
( UBaseType_t ) MPU_xStreamBufferSetTriggerLevelImpl, /* SYSTEM_CALL_xStreamBufferSetTriggerLevel. */
|
||||||
( UBaseType_t ) MPU_xStreamBufferNextMessageLengthBytesImpl /* SYSTEM_CALL_xStreamBufferNextMessageLengthBytes. */
|
( UBaseType_t ) MPU_xStreamBufferNextMessageLengthBytesImpl /* SYSTEM_CALL_xStreamBufferNextMessageLengthBytes. */
|
||||||
|
#else
|
||||||
|
( UBaseType_t ) 0, /* SYSTEM_CALL_xStreamBufferSend. */
|
||||||
|
( UBaseType_t ) 0, /* SYSTEM_CALL_xStreamBufferReceive. */
|
||||||
|
( UBaseType_t ) 0, /* SYSTEM_CALL_xStreamBufferIsFull. */
|
||||||
|
( UBaseType_t ) 0, /* SYSTEM_CALL_xStreamBufferIsEmpty. */
|
||||||
|
( UBaseType_t ) 0, /* SYSTEM_CALL_xStreamBufferSpacesAvailable. */
|
||||||
|
( UBaseType_t ) 0, /* SYSTEM_CALL_xStreamBufferBytesAvailable. */
|
||||||
|
( UBaseType_t ) 0, /* SYSTEM_CALL_xStreamBufferSetTriggerLevel. */
|
||||||
|
( UBaseType_t ) 0, /* SYSTEM_CALL_xStreamBufferNextMessageLengthBytes. */
|
||||||
|
#endif
|
||||||
|
|
||||||
};
|
};
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
|
|
|
@ -1690,6 +1690,8 @@
|
||||||
#endif /* if ( configUSE_TIMERS == 1 ) */
|
#endif /* if ( configUSE_TIMERS == 1 ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
|
#if ( configUSE_EVENT_GROUPS == 1 )
|
||||||
|
|
||||||
EventBits_t MPU_xEventGroupWaitBitsEntry( const xEventGroupWaitBitsParams_t * pxParams ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
EventBits_t MPU_xEventGroupWaitBitsEntry( const xEventGroupWaitBitsParams_t * pxParams ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
||||||
|
|
||||||
EventBits_t MPU_xEventGroupWaitBitsEntry( const xEventGroupWaitBitsParams_t * pxParams ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */
|
EventBits_t MPU_xEventGroupWaitBitsEntry( const xEventGroupWaitBitsParams_t * pxParams ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */
|
||||||
|
@ -1713,8 +1715,12 @@
|
||||||
: : "i" ( SYSTEM_CALL_xEventGroupWaitBits ) : "memory"
|
: : "i" ( SYSTEM_CALL_xEventGroupWaitBits ) : "memory"
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endif /* #if ( configUSE_EVENT_GROUPS == 1 ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
|
#if ( configUSE_EVENT_GROUPS == 1 )
|
||||||
|
|
||||||
EventBits_t MPU_xEventGroupClearBits( EventGroupHandle_t xEventGroup,
|
EventBits_t MPU_xEventGroupClearBits( EventGroupHandle_t xEventGroup,
|
||||||
const EventBits_t uxBitsToClear ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
const EventBits_t uxBitsToClear ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
||||||
|
|
||||||
|
@ -1740,8 +1746,12 @@
|
||||||
: : "i" ( SYSTEM_CALL_xEventGroupClearBits ) : "memory"
|
: : "i" ( SYSTEM_CALL_xEventGroupClearBits ) : "memory"
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endif /* #if ( configUSE_EVENT_GROUPS == 1 ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
|
#if ( configUSE_EVENT_GROUPS == 1 )
|
||||||
|
|
||||||
EventBits_t MPU_xEventGroupSetBits( EventGroupHandle_t xEventGroup,
|
EventBits_t MPU_xEventGroupSetBits( EventGroupHandle_t xEventGroup,
|
||||||
const EventBits_t uxBitsToSet ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
const EventBits_t uxBitsToSet ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
||||||
|
|
||||||
|
@ -1767,8 +1777,12 @@
|
||||||
: : "i" ( SYSTEM_CALL_xEventGroupSetBits ) : "memory"
|
: : "i" ( SYSTEM_CALL_xEventGroupSetBits ) : "memory"
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endif /* #if ( configUSE_EVENT_GROUPS == 1 ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
|
#if ( configUSE_EVENT_GROUPS == 1 )
|
||||||
|
|
||||||
EventBits_t MPU_xEventGroupSync( EventGroupHandle_t xEventGroup,
|
EventBits_t MPU_xEventGroupSync( EventGroupHandle_t xEventGroup,
|
||||||
const EventBits_t uxBitsToSet,
|
const EventBits_t uxBitsToSet,
|
||||||
const EventBits_t uxBitsToWaitFor,
|
const EventBits_t uxBitsToWaitFor,
|
||||||
|
@ -1798,9 +1812,11 @@
|
||||||
: : "i" ( SYSTEM_CALL_xEventGroupSync ) : "memory"
|
: : "i" ( SYSTEM_CALL_xEventGroupSync ) : "memory"
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endif /* #if ( configUSE_EVENT_GROUPS == 1 ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
#if ( configUSE_TRACE_FACILITY == 1 )
|
#if ( ( configUSE_EVENT_GROUPS == 1 ) && ( configUSE_TRACE_FACILITY == 1 ) )
|
||||||
|
|
||||||
UBaseType_t MPU_uxEventGroupGetNumber( void * xEventGroup ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
UBaseType_t MPU_uxEventGroupGetNumber( void * xEventGroup ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
||||||
|
|
||||||
|
@ -1826,10 +1842,10 @@
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
#endif /*( configUSE_TRACE_FACILITY == 1 )*/
|
#endif /* #if ( ( configUSE_EVENT_GROUPS == 1 ) && ( configUSE_TRACE_FACILITY == 1 ) ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
#if ( configUSE_TRACE_FACILITY == 1 )
|
#if ( ( configUSE_EVENT_GROUPS == 1 ) && ( configUSE_TRACE_FACILITY == 1 ) )
|
||||||
|
|
||||||
void MPU_vEventGroupSetNumber( void * xEventGroup,
|
void MPU_vEventGroupSetNumber( void * xEventGroup,
|
||||||
UBaseType_t uxEventGroupNumber ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
UBaseType_t uxEventGroupNumber ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
||||||
|
@ -1857,9 +1873,11 @@
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
#endif /*( configUSE_TRACE_FACILITY == 1 )*/
|
#endif /* #if ( ( configUSE_EVENT_GROUPS == 1 ) && ( configUSE_TRACE_FACILITY == 1 ) ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
|
#if ( configUSE_STREAM_BUFFERS == 1 )
|
||||||
|
|
||||||
size_t MPU_xStreamBufferSend( StreamBufferHandle_t xStreamBuffer,
|
size_t MPU_xStreamBufferSend( StreamBufferHandle_t xStreamBuffer,
|
||||||
const void * pvTxData,
|
const void * pvTxData,
|
||||||
size_t xDataLengthBytes,
|
size_t xDataLengthBytes,
|
||||||
|
@ -1889,8 +1907,12 @@
|
||||||
: : "i" ( SYSTEM_CALL_xStreamBufferSend ) : "memory"
|
: : "i" ( SYSTEM_CALL_xStreamBufferSend ) : "memory"
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endif /* #if ( configUSE_STREAM_BUFFERS == 1 ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
|
#if ( configUSE_STREAM_BUFFERS == 1 )
|
||||||
|
|
||||||
size_t MPU_xStreamBufferReceive( StreamBufferHandle_t xStreamBuffer,
|
size_t MPU_xStreamBufferReceive( StreamBufferHandle_t xStreamBuffer,
|
||||||
void * pvRxData,
|
void * pvRxData,
|
||||||
size_t xBufferLengthBytes,
|
size_t xBufferLengthBytes,
|
||||||
|
@ -1920,8 +1942,12 @@
|
||||||
: : "i" ( SYSTEM_CALL_xStreamBufferReceive ) : "memory"
|
: : "i" ( SYSTEM_CALL_xStreamBufferReceive ) : "memory"
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endif /* #if ( configUSE_STREAM_BUFFERS == 1 ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
|
#if ( configUSE_STREAM_BUFFERS == 1 )
|
||||||
|
|
||||||
BaseType_t MPU_xStreamBufferIsFull( StreamBufferHandle_t xStreamBuffer ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
BaseType_t MPU_xStreamBufferIsFull( StreamBufferHandle_t xStreamBuffer ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
||||||
|
|
||||||
BaseType_t MPU_xStreamBufferIsFull( StreamBufferHandle_t xStreamBuffer ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */
|
BaseType_t MPU_xStreamBufferIsFull( StreamBufferHandle_t xStreamBuffer ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */
|
||||||
|
@ -1945,8 +1971,12 @@
|
||||||
: : "i" ( SYSTEM_CALL_xStreamBufferIsFull ) : "memory"
|
: : "i" ( SYSTEM_CALL_xStreamBufferIsFull ) : "memory"
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endif /* #if ( configUSE_STREAM_BUFFERS == 1 ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
|
#if ( configUSE_STREAM_BUFFERS == 1 )
|
||||||
|
|
||||||
BaseType_t MPU_xStreamBufferIsEmpty( StreamBufferHandle_t xStreamBuffer ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
BaseType_t MPU_xStreamBufferIsEmpty( StreamBufferHandle_t xStreamBuffer ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
||||||
|
|
||||||
BaseType_t MPU_xStreamBufferIsEmpty( StreamBufferHandle_t xStreamBuffer ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */
|
BaseType_t MPU_xStreamBufferIsEmpty( StreamBufferHandle_t xStreamBuffer ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */
|
||||||
|
@ -1970,8 +2000,12 @@
|
||||||
: : "i" ( SYSTEM_CALL_xStreamBufferIsEmpty ) : "memory"
|
: : "i" ( SYSTEM_CALL_xStreamBufferIsEmpty ) : "memory"
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endif /* #if ( configUSE_STREAM_BUFFERS == 1 ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
|
#if ( configUSE_STREAM_BUFFERS == 1 )
|
||||||
|
|
||||||
size_t MPU_xStreamBufferSpacesAvailable( StreamBufferHandle_t xStreamBuffer ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
size_t MPU_xStreamBufferSpacesAvailable( StreamBufferHandle_t xStreamBuffer ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
||||||
|
|
||||||
size_t MPU_xStreamBufferSpacesAvailable( StreamBufferHandle_t xStreamBuffer ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */
|
size_t MPU_xStreamBufferSpacesAvailable( StreamBufferHandle_t xStreamBuffer ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */
|
||||||
|
@ -1995,8 +2029,12 @@
|
||||||
: : "i" ( SYSTEM_CALL_xStreamBufferSpacesAvailable ) : "memory"
|
: : "i" ( SYSTEM_CALL_xStreamBufferSpacesAvailable ) : "memory"
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endif /* #if ( configUSE_STREAM_BUFFERS == 1 ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
|
#if ( configUSE_STREAM_BUFFERS == 1 )
|
||||||
|
|
||||||
size_t MPU_xStreamBufferBytesAvailable( StreamBufferHandle_t xStreamBuffer ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
size_t MPU_xStreamBufferBytesAvailable( StreamBufferHandle_t xStreamBuffer ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
||||||
|
|
||||||
size_t MPU_xStreamBufferBytesAvailable( StreamBufferHandle_t xStreamBuffer ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */
|
size_t MPU_xStreamBufferBytesAvailable( StreamBufferHandle_t xStreamBuffer ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */
|
||||||
|
@ -2020,8 +2058,12 @@
|
||||||
: : "i" ( SYSTEM_CALL_xStreamBufferBytesAvailable ) : "memory"
|
: : "i" ( SYSTEM_CALL_xStreamBufferBytesAvailable ) : "memory"
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endif /* #if ( configUSE_STREAM_BUFFERS == 1 ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
|
#if ( configUSE_STREAM_BUFFERS == 1 )
|
||||||
|
|
||||||
BaseType_t MPU_xStreamBufferSetTriggerLevel( StreamBufferHandle_t xStreamBuffer,
|
BaseType_t MPU_xStreamBufferSetTriggerLevel( StreamBufferHandle_t xStreamBuffer,
|
||||||
size_t xTriggerLevel ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
size_t xTriggerLevel ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
||||||
|
|
||||||
|
@ -2047,8 +2089,12 @@
|
||||||
: : "i" ( SYSTEM_CALL_xStreamBufferSetTriggerLevel ) : "memory"
|
: : "i" ( SYSTEM_CALL_xStreamBufferSetTriggerLevel ) : "memory"
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endif /* #if ( configUSE_STREAM_BUFFERS == 1 ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
|
#if ( configUSE_STREAM_BUFFERS == 1 )
|
||||||
|
|
||||||
size_t MPU_xStreamBufferNextMessageLengthBytes( StreamBufferHandle_t xStreamBuffer ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
size_t MPU_xStreamBufferNextMessageLengthBytes( StreamBufferHandle_t xStreamBuffer ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
||||||
|
|
||||||
size_t MPU_xStreamBufferNextMessageLengthBytes( StreamBufferHandle_t xStreamBuffer ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */
|
size_t MPU_xStreamBufferNextMessageLengthBytes( StreamBufferHandle_t xStreamBuffer ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */
|
||||||
|
@ -2072,6 +2118,8 @@
|
||||||
: : "i" ( SYSTEM_CALL_xStreamBufferNextMessageLengthBytes ) : "memory"
|
: : "i" ( SYSTEM_CALL_xStreamBufferNextMessageLengthBytes ) : "memory"
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endif /* #if ( configUSE_STREAM_BUFFERS == 1 ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
#endif /* ( configENABLE_MPU == 1 ) && ( configUSE_MPU_WRAPPERS_V1 == 0 ) */
|
#endif /* ( configENABLE_MPU == 1 ) && ( configUSE_MPU_WRAPPERS_V1 == 0 ) */
|
||||||
|
|
|
@ -1690,6 +1690,8 @@
|
||||||
#endif /* if ( configUSE_TIMERS == 1 ) */
|
#endif /* if ( configUSE_TIMERS == 1 ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
|
#if ( configUSE_EVENT_GROUPS == 1 )
|
||||||
|
|
||||||
EventBits_t MPU_xEventGroupWaitBitsEntry( const xEventGroupWaitBitsParams_t * pxParams ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
EventBits_t MPU_xEventGroupWaitBitsEntry( const xEventGroupWaitBitsParams_t * pxParams ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
||||||
|
|
||||||
EventBits_t MPU_xEventGroupWaitBitsEntry( const xEventGroupWaitBitsParams_t * pxParams ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */
|
EventBits_t MPU_xEventGroupWaitBitsEntry( const xEventGroupWaitBitsParams_t * pxParams ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */
|
||||||
|
@ -1713,8 +1715,12 @@
|
||||||
: : "i" ( SYSTEM_CALL_xEventGroupWaitBits ) : "memory"
|
: : "i" ( SYSTEM_CALL_xEventGroupWaitBits ) : "memory"
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endif /* #if ( configUSE_EVENT_GROUPS == 1 ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
|
#if ( configUSE_EVENT_GROUPS == 1 )
|
||||||
|
|
||||||
EventBits_t MPU_xEventGroupClearBits( EventGroupHandle_t xEventGroup,
|
EventBits_t MPU_xEventGroupClearBits( EventGroupHandle_t xEventGroup,
|
||||||
const EventBits_t uxBitsToClear ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
const EventBits_t uxBitsToClear ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
||||||
|
|
||||||
|
@ -1740,8 +1746,12 @@
|
||||||
: : "i" ( SYSTEM_CALL_xEventGroupClearBits ) : "memory"
|
: : "i" ( SYSTEM_CALL_xEventGroupClearBits ) : "memory"
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endif /* #if ( configUSE_EVENT_GROUPS == 1 ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
|
#if ( configUSE_EVENT_GROUPS == 1 )
|
||||||
|
|
||||||
EventBits_t MPU_xEventGroupSetBits( EventGroupHandle_t xEventGroup,
|
EventBits_t MPU_xEventGroupSetBits( EventGroupHandle_t xEventGroup,
|
||||||
const EventBits_t uxBitsToSet ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
const EventBits_t uxBitsToSet ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
||||||
|
|
||||||
|
@ -1767,8 +1777,12 @@
|
||||||
: : "i" ( SYSTEM_CALL_xEventGroupSetBits ) : "memory"
|
: : "i" ( SYSTEM_CALL_xEventGroupSetBits ) : "memory"
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endif /* #if ( configUSE_EVENT_GROUPS == 1 ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
|
#if ( configUSE_EVENT_GROUPS == 1 )
|
||||||
|
|
||||||
EventBits_t MPU_xEventGroupSync( EventGroupHandle_t xEventGroup,
|
EventBits_t MPU_xEventGroupSync( EventGroupHandle_t xEventGroup,
|
||||||
const EventBits_t uxBitsToSet,
|
const EventBits_t uxBitsToSet,
|
||||||
const EventBits_t uxBitsToWaitFor,
|
const EventBits_t uxBitsToWaitFor,
|
||||||
|
@ -1798,9 +1812,11 @@
|
||||||
: : "i" ( SYSTEM_CALL_xEventGroupSync ) : "memory"
|
: : "i" ( SYSTEM_CALL_xEventGroupSync ) : "memory"
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endif /* #if ( configUSE_EVENT_GROUPS == 1 ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
#if ( configUSE_TRACE_FACILITY == 1 )
|
#if ( ( configUSE_EVENT_GROUPS == 1 ) && ( configUSE_TRACE_FACILITY == 1 ) )
|
||||||
|
|
||||||
UBaseType_t MPU_uxEventGroupGetNumber( void * xEventGroup ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
UBaseType_t MPU_uxEventGroupGetNumber( void * xEventGroup ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
||||||
|
|
||||||
|
@ -1826,10 +1842,10 @@
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
#endif /*( configUSE_TRACE_FACILITY == 1 )*/
|
#endif /* #if ( ( configUSE_EVENT_GROUPS == 1 ) && ( configUSE_TRACE_FACILITY == 1 ) ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
#if ( configUSE_TRACE_FACILITY == 1 )
|
#if ( ( configUSE_EVENT_GROUPS == 1 ) && ( configUSE_TRACE_FACILITY == 1 ) )
|
||||||
|
|
||||||
void MPU_vEventGroupSetNumber( void * xEventGroup,
|
void MPU_vEventGroupSetNumber( void * xEventGroup,
|
||||||
UBaseType_t uxEventGroupNumber ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
UBaseType_t uxEventGroupNumber ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
||||||
|
@ -1857,9 +1873,11 @@
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
#endif /*( configUSE_TRACE_FACILITY == 1 )*/
|
#endif /* #if ( ( configUSE_EVENT_GROUPS == 1 ) && ( configUSE_TRACE_FACILITY == 1 ) ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
|
#if ( configUSE_STREAM_BUFFERS == 1 )
|
||||||
|
|
||||||
size_t MPU_xStreamBufferSend( StreamBufferHandle_t xStreamBuffer,
|
size_t MPU_xStreamBufferSend( StreamBufferHandle_t xStreamBuffer,
|
||||||
const void * pvTxData,
|
const void * pvTxData,
|
||||||
size_t xDataLengthBytes,
|
size_t xDataLengthBytes,
|
||||||
|
@ -1889,8 +1907,12 @@
|
||||||
: : "i" ( SYSTEM_CALL_xStreamBufferSend ) : "memory"
|
: : "i" ( SYSTEM_CALL_xStreamBufferSend ) : "memory"
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endif /* #if ( configUSE_STREAM_BUFFERS == 1 ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
|
#if ( configUSE_STREAM_BUFFERS == 1 )
|
||||||
|
|
||||||
size_t MPU_xStreamBufferReceive( StreamBufferHandle_t xStreamBuffer,
|
size_t MPU_xStreamBufferReceive( StreamBufferHandle_t xStreamBuffer,
|
||||||
void * pvRxData,
|
void * pvRxData,
|
||||||
size_t xBufferLengthBytes,
|
size_t xBufferLengthBytes,
|
||||||
|
@ -1920,8 +1942,12 @@
|
||||||
: : "i" ( SYSTEM_CALL_xStreamBufferReceive ) : "memory"
|
: : "i" ( SYSTEM_CALL_xStreamBufferReceive ) : "memory"
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endif /* #if ( configUSE_STREAM_BUFFERS == 1 ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
|
#if ( configUSE_STREAM_BUFFERS == 1 )
|
||||||
|
|
||||||
BaseType_t MPU_xStreamBufferIsFull( StreamBufferHandle_t xStreamBuffer ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
BaseType_t MPU_xStreamBufferIsFull( StreamBufferHandle_t xStreamBuffer ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
||||||
|
|
||||||
BaseType_t MPU_xStreamBufferIsFull( StreamBufferHandle_t xStreamBuffer ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */
|
BaseType_t MPU_xStreamBufferIsFull( StreamBufferHandle_t xStreamBuffer ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */
|
||||||
|
@ -1945,8 +1971,12 @@
|
||||||
: : "i" ( SYSTEM_CALL_xStreamBufferIsFull ) : "memory"
|
: : "i" ( SYSTEM_CALL_xStreamBufferIsFull ) : "memory"
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endif /* #if ( configUSE_STREAM_BUFFERS == 1 ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
|
#if ( configUSE_STREAM_BUFFERS == 1 )
|
||||||
|
|
||||||
BaseType_t MPU_xStreamBufferIsEmpty( StreamBufferHandle_t xStreamBuffer ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
BaseType_t MPU_xStreamBufferIsEmpty( StreamBufferHandle_t xStreamBuffer ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
||||||
|
|
||||||
BaseType_t MPU_xStreamBufferIsEmpty( StreamBufferHandle_t xStreamBuffer ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */
|
BaseType_t MPU_xStreamBufferIsEmpty( StreamBufferHandle_t xStreamBuffer ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */
|
||||||
|
@ -1970,8 +2000,12 @@
|
||||||
: : "i" ( SYSTEM_CALL_xStreamBufferIsEmpty ) : "memory"
|
: : "i" ( SYSTEM_CALL_xStreamBufferIsEmpty ) : "memory"
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endif /* #if ( configUSE_STREAM_BUFFERS == 1 ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
|
#if ( configUSE_STREAM_BUFFERS == 1 )
|
||||||
|
|
||||||
size_t MPU_xStreamBufferSpacesAvailable( StreamBufferHandle_t xStreamBuffer ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
size_t MPU_xStreamBufferSpacesAvailable( StreamBufferHandle_t xStreamBuffer ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
||||||
|
|
||||||
size_t MPU_xStreamBufferSpacesAvailable( StreamBufferHandle_t xStreamBuffer ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */
|
size_t MPU_xStreamBufferSpacesAvailable( StreamBufferHandle_t xStreamBuffer ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */
|
||||||
|
@ -1995,8 +2029,12 @@
|
||||||
: : "i" ( SYSTEM_CALL_xStreamBufferSpacesAvailable ) : "memory"
|
: : "i" ( SYSTEM_CALL_xStreamBufferSpacesAvailable ) : "memory"
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endif /* #if ( configUSE_STREAM_BUFFERS == 1 ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
|
#if ( configUSE_STREAM_BUFFERS == 1 )
|
||||||
|
|
||||||
size_t MPU_xStreamBufferBytesAvailable( StreamBufferHandle_t xStreamBuffer ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
size_t MPU_xStreamBufferBytesAvailable( StreamBufferHandle_t xStreamBuffer ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
||||||
|
|
||||||
size_t MPU_xStreamBufferBytesAvailable( StreamBufferHandle_t xStreamBuffer ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */
|
size_t MPU_xStreamBufferBytesAvailable( StreamBufferHandle_t xStreamBuffer ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */
|
||||||
|
@ -2020,8 +2058,12 @@
|
||||||
: : "i" ( SYSTEM_CALL_xStreamBufferBytesAvailable ) : "memory"
|
: : "i" ( SYSTEM_CALL_xStreamBufferBytesAvailable ) : "memory"
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endif /* #if ( configUSE_STREAM_BUFFERS == 1 ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
|
#if ( configUSE_STREAM_BUFFERS == 1 )
|
||||||
|
|
||||||
BaseType_t MPU_xStreamBufferSetTriggerLevel( StreamBufferHandle_t xStreamBuffer,
|
BaseType_t MPU_xStreamBufferSetTriggerLevel( StreamBufferHandle_t xStreamBuffer,
|
||||||
size_t xTriggerLevel ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
size_t xTriggerLevel ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
||||||
|
|
||||||
|
@ -2047,8 +2089,12 @@
|
||||||
: : "i" ( SYSTEM_CALL_xStreamBufferSetTriggerLevel ) : "memory"
|
: : "i" ( SYSTEM_CALL_xStreamBufferSetTriggerLevel ) : "memory"
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endif /* #if ( configUSE_STREAM_BUFFERS == 1 ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
|
#if ( configUSE_STREAM_BUFFERS == 1 )
|
||||||
|
|
||||||
size_t MPU_xStreamBufferNextMessageLengthBytes( StreamBufferHandle_t xStreamBuffer ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
size_t MPU_xStreamBufferNextMessageLengthBytes( StreamBufferHandle_t xStreamBuffer ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
||||||
|
|
||||||
size_t MPU_xStreamBufferNextMessageLengthBytes( StreamBufferHandle_t xStreamBuffer ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */
|
size_t MPU_xStreamBufferNextMessageLengthBytes( StreamBufferHandle_t xStreamBuffer ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */
|
||||||
|
@ -2072,6 +2118,8 @@
|
||||||
: : "i" ( SYSTEM_CALL_xStreamBufferNextMessageLengthBytes ) : "memory"
|
: : "i" ( SYSTEM_CALL_xStreamBufferNextMessageLengthBytes ) : "memory"
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endif /* #if ( configUSE_STREAM_BUFFERS == 1 ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
#endif /* ( configENABLE_MPU == 1 ) && ( configUSE_MPU_WRAPPERS_V1 == 0 ) */
|
#endif /* ( configENABLE_MPU == 1 ) && ( configUSE_MPU_WRAPPERS_V1 == 0 ) */
|
||||||
|
|
|
@ -1634,6 +1634,8 @@
|
||||||
#endif /* if ( configUSE_TIMERS == 1 ) */
|
#endif /* if ( configUSE_TIMERS == 1 ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
|
#if ( configUSE_EVENT_GROUPS == 1 )
|
||||||
|
|
||||||
EventBits_t MPU_xEventGroupWaitBitsEntry( const xEventGroupWaitBitsParams_t * pxParams ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
EventBits_t MPU_xEventGroupWaitBitsEntry( const xEventGroupWaitBitsParams_t * pxParams ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
||||||
|
|
||||||
EventBits_t MPU_xEventGroupWaitBitsEntry( const xEventGroupWaitBitsParams_t * pxParams ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */
|
EventBits_t MPU_xEventGroupWaitBitsEntry( const xEventGroupWaitBitsParams_t * pxParams ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */
|
||||||
|
@ -1656,8 +1658,12 @@
|
||||||
: : "i" ( SYSTEM_CALL_xEventGroupWaitBits ) : "memory"
|
: : "i" ( SYSTEM_CALL_xEventGroupWaitBits ) : "memory"
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endif /* #if ( configUSE_EVENT_GROUPS == 1 ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
|
#if ( configUSE_EVENT_GROUPS == 1 )
|
||||||
|
|
||||||
EventBits_t MPU_xEventGroupClearBits( EventGroupHandle_t xEventGroup,
|
EventBits_t MPU_xEventGroupClearBits( EventGroupHandle_t xEventGroup,
|
||||||
const EventBits_t uxBitsToClear ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
const EventBits_t uxBitsToClear ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
||||||
|
|
||||||
|
@ -1682,8 +1688,12 @@
|
||||||
: : "i" ( SYSTEM_CALL_xEventGroupClearBits ) : "memory"
|
: : "i" ( SYSTEM_CALL_xEventGroupClearBits ) : "memory"
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endif /* #if ( configUSE_EVENT_GROUPS == 1 ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
|
#if ( configUSE_EVENT_GROUPS == 1 )
|
||||||
|
|
||||||
EventBits_t MPU_xEventGroupSetBits( EventGroupHandle_t xEventGroup,
|
EventBits_t MPU_xEventGroupSetBits( EventGroupHandle_t xEventGroup,
|
||||||
const EventBits_t uxBitsToSet ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
const EventBits_t uxBitsToSet ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
||||||
|
|
||||||
|
@ -1708,8 +1718,12 @@
|
||||||
: : "i" ( SYSTEM_CALL_xEventGroupSetBits ) : "memory"
|
: : "i" ( SYSTEM_CALL_xEventGroupSetBits ) : "memory"
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endif /* #if ( configUSE_EVENT_GROUPS == 1 ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
|
#if ( configUSE_EVENT_GROUPS == 1 )
|
||||||
|
|
||||||
EventBits_t MPU_xEventGroupSync( EventGroupHandle_t xEventGroup,
|
EventBits_t MPU_xEventGroupSync( EventGroupHandle_t xEventGroup,
|
||||||
const EventBits_t uxBitsToSet,
|
const EventBits_t uxBitsToSet,
|
||||||
const EventBits_t uxBitsToWaitFor,
|
const EventBits_t uxBitsToWaitFor,
|
||||||
|
@ -1738,9 +1752,11 @@
|
||||||
: : "i" ( SYSTEM_CALL_xEventGroupSync ) : "memory"
|
: : "i" ( SYSTEM_CALL_xEventGroupSync ) : "memory"
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endif /* #if ( configUSE_EVENT_GROUPS == 1 ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
#if ( configUSE_TRACE_FACILITY == 1 )
|
#if ( ( configUSE_EVENT_GROUPS == 1 ) && ( configUSE_TRACE_FACILITY == 1 ) )
|
||||||
|
|
||||||
UBaseType_t MPU_uxEventGroupGetNumber( void * xEventGroup ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
UBaseType_t MPU_uxEventGroupGetNumber( void * xEventGroup ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
||||||
|
|
||||||
|
@ -1765,10 +1781,10 @@
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
#endif /*( configUSE_TRACE_FACILITY == 1 )*/
|
#endif /* #if ( ( configUSE_EVENT_GROUPS == 1 ) && ( configUSE_TRACE_FACILITY == 1 ) ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
#if ( configUSE_TRACE_FACILITY == 1 )
|
#if ( ( configUSE_EVENT_GROUPS == 1 ) && ( configUSE_TRACE_FACILITY == 1 ) )
|
||||||
|
|
||||||
void MPU_vEventGroupSetNumber( void * xEventGroup,
|
void MPU_vEventGroupSetNumber( void * xEventGroup,
|
||||||
UBaseType_t uxEventGroupNumber ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
UBaseType_t uxEventGroupNumber ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
||||||
|
@ -1795,9 +1811,11 @@
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
#endif /*( configUSE_TRACE_FACILITY == 1 )*/
|
#endif /* #if ( ( configUSE_EVENT_GROUPS == 1 ) && ( configUSE_TRACE_FACILITY == 1 ) ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
|
#if ( configUSE_STREAM_BUFFERS == 1 )
|
||||||
|
|
||||||
size_t MPU_xStreamBufferSend( StreamBufferHandle_t xStreamBuffer,
|
size_t MPU_xStreamBufferSend( StreamBufferHandle_t xStreamBuffer,
|
||||||
const void * pvTxData,
|
const void * pvTxData,
|
||||||
size_t xDataLengthBytes,
|
size_t xDataLengthBytes,
|
||||||
|
@ -1826,8 +1844,12 @@
|
||||||
: : "i" ( SYSTEM_CALL_xStreamBufferSend ) : "memory"
|
: : "i" ( SYSTEM_CALL_xStreamBufferSend ) : "memory"
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endif /* #if ( configUSE_STREAM_BUFFERS == 1 ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
|
#if ( configUSE_STREAM_BUFFERS == 1 )
|
||||||
|
|
||||||
size_t MPU_xStreamBufferReceive( StreamBufferHandle_t xStreamBuffer,
|
size_t MPU_xStreamBufferReceive( StreamBufferHandle_t xStreamBuffer,
|
||||||
void * pvRxData,
|
void * pvRxData,
|
||||||
size_t xBufferLengthBytes,
|
size_t xBufferLengthBytes,
|
||||||
|
@ -1856,8 +1878,12 @@
|
||||||
: : "i" ( SYSTEM_CALL_xStreamBufferReceive ) : "memory"
|
: : "i" ( SYSTEM_CALL_xStreamBufferReceive ) : "memory"
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endif /* #if ( configUSE_STREAM_BUFFERS == 1 ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
|
#if ( configUSE_STREAM_BUFFERS == 1 )
|
||||||
|
|
||||||
BaseType_t MPU_xStreamBufferIsFull( StreamBufferHandle_t xStreamBuffer ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
BaseType_t MPU_xStreamBufferIsFull( StreamBufferHandle_t xStreamBuffer ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
||||||
|
|
||||||
BaseType_t MPU_xStreamBufferIsFull( StreamBufferHandle_t xStreamBuffer ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */
|
BaseType_t MPU_xStreamBufferIsFull( StreamBufferHandle_t xStreamBuffer ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */
|
||||||
|
@ -1880,8 +1906,12 @@
|
||||||
: : "i" ( SYSTEM_CALL_xStreamBufferIsFull ) : "memory"
|
: : "i" ( SYSTEM_CALL_xStreamBufferIsFull ) : "memory"
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endif /* #if ( configUSE_STREAM_BUFFERS == 1 ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
|
#if ( configUSE_STREAM_BUFFERS == 1 )
|
||||||
|
|
||||||
BaseType_t MPU_xStreamBufferIsEmpty( StreamBufferHandle_t xStreamBuffer ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
BaseType_t MPU_xStreamBufferIsEmpty( StreamBufferHandle_t xStreamBuffer ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
||||||
|
|
||||||
BaseType_t MPU_xStreamBufferIsEmpty( StreamBufferHandle_t xStreamBuffer ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */
|
BaseType_t MPU_xStreamBufferIsEmpty( StreamBufferHandle_t xStreamBuffer ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */
|
||||||
|
@ -1904,8 +1934,12 @@
|
||||||
: : "i" ( SYSTEM_CALL_xStreamBufferIsEmpty ) : "memory"
|
: : "i" ( SYSTEM_CALL_xStreamBufferIsEmpty ) : "memory"
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endif /* #if ( configUSE_STREAM_BUFFERS == 1 ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
|
#if ( configUSE_STREAM_BUFFERS == 1 )
|
||||||
|
|
||||||
size_t MPU_xStreamBufferSpacesAvailable( StreamBufferHandle_t xStreamBuffer ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
size_t MPU_xStreamBufferSpacesAvailable( StreamBufferHandle_t xStreamBuffer ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
||||||
|
|
||||||
size_t MPU_xStreamBufferSpacesAvailable( StreamBufferHandle_t xStreamBuffer ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */
|
size_t MPU_xStreamBufferSpacesAvailable( StreamBufferHandle_t xStreamBuffer ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */
|
||||||
|
@ -1928,8 +1962,12 @@
|
||||||
: : "i" ( SYSTEM_CALL_xStreamBufferSpacesAvailable ) : "memory"
|
: : "i" ( SYSTEM_CALL_xStreamBufferSpacesAvailable ) : "memory"
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endif /* #if ( configUSE_STREAM_BUFFERS == 1 ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
|
#if ( configUSE_STREAM_BUFFERS == 1 )
|
||||||
|
|
||||||
size_t MPU_xStreamBufferBytesAvailable( StreamBufferHandle_t xStreamBuffer ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
size_t MPU_xStreamBufferBytesAvailable( StreamBufferHandle_t xStreamBuffer ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
||||||
|
|
||||||
size_t MPU_xStreamBufferBytesAvailable( StreamBufferHandle_t xStreamBuffer ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */
|
size_t MPU_xStreamBufferBytesAvailable( StreamBufferHandle_t xStreamBuffer ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */
|
||||||
|
@ -1952,8 +1990,12 @@
|
||||||
: : "i" ( SYSTEM_CALL_xStreamBufferBytesAvailable ) : "memory"
|
: : "i" ( SYSTEM_CALL_xStreamBufferBytesAvailable ) : "memory"
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endif /* #if ( configUSE_STREAM_BUFFERS == 1 ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
|
#if ( configUSE_STREAM_BUFFERS == 1 )
|
||||||
|
|
||||||
BaseType_t MPU_xStreamBufferSetTriggerLevel( StreamBufferHandle_t xStreamBuffer,
|
BaseType_t MPU_xStreamBufferSetTriggerLevel( StreamBufferHandle_t xStreamBuffer,
|
||||||
size_t xTriggerLevel ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
size_t xTriggerLevel ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
||||||
|
|
||||||
|
@ -1978,8 +2020,12 @@
|
||||||
: : "i" ( SYSTEM_CALL_xStreamBufferSetTriggerLevel ) : "memory"
|
: : "i" ( SYSTEM_CALL_xStreamBufferSetTriggerLevel ) : "memory"
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endif /* #if ( configUSE_STREAM_BUFFERS == 1 ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
|
#if ( configUSE_STREAM_BUFFERS == 1 )
|
||||||
|
|
||||||
size_t MPU_xStreamBufferNextMessageLengthBytes( StreamBufferHandle_t xStreamBuffer ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
size_t MPU_xStreamBufferNextMessageLengthBytes( StreamBufferHandle_t xStreamBuffer ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
||||||
|
|
||||||
size_t MPU_xStreamBufferNextMessageLengthBytes( StreamBufferHandle_t xStreamBuffer ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */
|
size_t MPU_xStreamBufferNextMessageLengthBytes( StreamBufferHandle_t xStreamBuffer ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */
|
||||||
|
@ -2002,6 +2048,8 @@
|
||||||
: : "i" ( SYSTEM_CALL_xStreamBufferNextMessageLengthBytes ) : "memory"
|
: : "i" ( SYSTEM_CALL_xStreamBufferNextMessageLengthBytes ) : "memory"
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endif /* #if ( configUSE_STREAM_BUFFERS == 1 ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
#endif /* ( configENABLE_MPU == 1 ) && ( configUSE_MPU_WRAPPERS_V1 == 0 ) */
|
#endif /* ( configENABLE_MPU == 1 ) && ( configUSE_MPU_WRAPPERS_V1 == 0 ) */
|
||||||
|
|
|
@ -1634,6 +1634,8 @@
|
||||||
#endif /* if ( configUSE_TIMERS == 1 ) */
|
#endif /* if ( configUSE_TIMERS == 1 ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
|
#if ( configUSE_EVENT_GROUPS == 1 )
|
||||||
|
|
||||||
EventBits_t MPU_xEventGroupWaitBitsEntry( const xEventGroupWaitBitsParams_t * pxParams ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
EventBits_t MPU_xEventGroupWaitBitsEntry( const xEventGroupWaitBitsParams_t * pxParams ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
||||||
|
|
||||||
EventBits_t MPU_xEventGroupWaitBitsEntry( const xEventGroupWaitBitsParams_t * pxParams ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */
|
EventBits_t MPU_xEventGroupWaitBitsEntry( const xEventGroupWaitBitsParams_t * pxParams ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */
|
||||||
|
@ -1656,8 +1658,12 @@
|
||||||
: : "i" ( SYSTEM_CALL_xEventGroupWaitBits ) : "memory"
|
: : "i" ( SYSTEM_CALL_xEventGroupWaitBits ) : "memory"
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endif /* #if ( configUSE_EVENT_GROUPS == 1 ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
|
#if ( configUSE_EVENT_GROUPS == 1 )
|
||||||
|
|
||||||
EventBits_t MPU_xEventGroupClearBits( EventGroupHandle_t xEventGroup,
|
EventBits_t MPU_xEventGroupClearBits( EventGroupHandle_t xEventGroup,
|
||||||
const EventBits_t uxBitsToClear ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
const EventBits_t uxBitsToClear ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
||||||
|
|
||||||
|
@ -1682,8 +1688,12 @@
|
||||||
: : "i" ( SYSTEM_CALL_xEventGroupClearBits ) : "memory"
|
: : "i" ( SYSTEM_CALL_xEventGroupClearBits ) : "memory"
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endif /* #if ( configUSE_EVENT_GROUPS == 1 ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
|
#if ( configUSE_EVENT_GROUPS == 1 )
|
||||||
|
|
||||||
EventBits_t MPU_xEventGroupSetBits( EventGroupHandle_t xEventGroup,
|
EventBits_t MPU_xEventGroupSetBits( EventGroupHandle_t xEventGroup,
|
||||||
const EventBits_t uxBitsToSet ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
const EventBits_t uxBitsToSet ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
||||||
|
|
||||||
|
@ -1708,8 +1718,12 @@
|
||||||
: : "i" ( SYSTEM_CALL_xEventGroupSetBits ) : "memory"
|
: : "i" ( SYSTEM_CALL_xEventGroupSetBits ) : "memory"
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endif /* #if ( configUSE_EVENT_GROUPS == 1 ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
|
#if ( configUSE_EVENT_GROUPS == 1 )
|
||||||
|
|
||||||
EventBits_t MPU_xEventGroupSync( EventGroupHandle_t xEventGroup,
|
EventBits_t MPU_xEventGroupSync( EventGroupHandle_t xEventGroup,
|
||||||
const EventBits_t uxBitsToSet,
|
const EventBits_t uxBitsToSet,
|
||||||
const EventBits_t uxBitsToWaitFor,
|
const EventBits_t uxBitsToWaitFor,
|
||||||
|
@ -1738,9 +1752,11 @@
|
||||||
: : "i" ( SYSTEM_CALL_xEventGroupSync ) : "memory"
|
: : "i" ( SYSTEM_CALL_xEventGroupSync ) : "memory"
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endif /* #if ( configUSE_EVENT_GROUPS == 1 ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
#if ( configUSE_TRACE_FACILITY == 1 )
|
#if ( ( configUSE_EVENT_GROUPS == 1 ) && ( configUSE_TRACE_FACILITY == 1 ) )
|
||||||
|
|
||||||
UBaseType_t MPU_uxEventGroupGetNumber( void * xEventGroup ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
UBaseType_t MPU_uxEventGroupGetNumber( void * xEventGroup ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
||||||
|
|
||||||
|
@ -1765,10 +1781,10 @@
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
#endif /*( configUSE_TRACE_FACILITY == 1 )*/
|
#endif /* #if ( ( configUSE_EVENT_GROUPS == 1 ) && ( configUSE_TRACE_FACILITY == 1 ) ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
#if ( configUSE_TRACE_FACILITY == 1 )
|
#if ( ( configUSE_EVENT_GROUPS == 1 ) && ( configUSE_TRACE_FACILITY == 1 ) )
|
||||||
|
|
||||||
void MPU_vEventGroupSetNumber( void * xEventGroup,
|
void MPU_vEventGroupSetNumber( void * xEventGroup,
|
||||||
UBaseType_t uxEventGroupNumber ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
UBaseType_t uxEventGroupNumber ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
||||||
|
@ -1795,9 +1811,11 @@
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
#endif /*( configUSE_TRACE_FACILITY == 1 )*/
|
#endif /* #if ( ( configUSE_EVENT_GROUPS == 1 ) && ( configUSE_TRACE_FACILITY == 1 ) ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
|
#if ( configUSE_STREAM_BUFFERS == 1 )
|
||||||
|
|
||||||
size_t MPU_xStreamBufferSend( StreamBufferHandle_t xStreamBuffer,
|
size_t MPU_xStreamBufferSend( StreamBufferHandle_t xStreamBuffer,
|
||||||
const void * pvTxData,
|
const void * pvTxData,
|
||||||
size_t xDataLengthBytes,
|
size_t xDataLengthBytes,
|
||||||
|
@ -1826,8 +1844,12 @@
|
||||||
: : "i" ( SYSTEM_CALL_xStreamBufferSend ) : "memory"
|
: : "i" ( SYSTEM_CALL_xStreamBufferSend ) : "memory"
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endif /* #if ( configUSE_STREAM_BUFFERS == 1 ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
|
#if ( configUSE_STREAM_BUFFERS == 1 )
|
||||||
|
|
||||||
size_t MPU_xStreamBufferReceive( StreamBufferHandle_t xStreamBuffer,
|
size_t MPU_xStreamBufferReceive( StreamBufferHandle_t xStreamBuffer,
|
||||||
void * pvRxData,
|
void * pvRxData,
|
||||||
size_t xBufferLengthBytes,
|
size_t xBufferLengthBytes,
|
||||||
|
@ -1856,8 +1878,12 @@
|
||||||
: : "i" ( SYSTEM_CALL_xStreamBufferReceive ) : "memory"
|
: : "i" ( SYSTEM_CALL_xStreamBufferReceive ) : "memory"
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endif /* #if ( configUSE_STREAM_BUFFERS == 1 ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
|
#if ( configUSE_STREAM_BUFFERS == 1 )
|
||||||
|
|
||||||
BaseType_t MPU_xStreamBufferIsFull( StreamBufferHandle_t xStreamBuffer ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
BaseType_t MPU_xStreamBufferIsFull( StreamBufferHandle_t xStreamBuffer ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
||||||
|
|
||||||
BaseType_t MPU_xStreamBufferIsFull( StreamBufferHandle_t xStreamBuffer ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */
|
BaseType_t MPU_xStreamBufferIsFull( StreamBufferHandle_t xStreamBuffer ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */
|
||||||
|
@ -1880,8 +1906,12 @@
|
||||||
: : "i" ( SYSTEM_CALL_xStreamBufferIsFull ) : "memory"
|
: : "i" ( SYSTEM_CALL_xStreamBufferIsFull ) : "memory"
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endif /* #if ( configUSE_STREAM_BUFFERS == 1 ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
|
#if ( configUSE_STREAM_BUFFERS == 1 )
|
||||||
|
|
||||||
BaseType_t MPU_xStreamBufferIsEmpty( StreamBufferHandle_t xStreamBuffer ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
BaseType_t MPU_xStreamBufferIsEmpty( StreamBufferHandle_t xStreamBuffer ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
||||||
|
|
||||||
BaseType_t MPU_xStreamBufferIsEmpty( StreamBufferHandle_t xStreamBuffer ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */
|
BaseType_t MPU_xStreamBufferIsEmpty( StreamBufferHandle_t xStreamBuffer ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */
|
||||||
|
@ -1904,8 +1934,12 @@
|
||||||
: : "i" ( SYSTEM_CALL_xStreamBufferIsEmpty ) : "memory"
|
: : "i" ( SYSTEM_CALL_xStreamBufferIsEmpty ) : "memory"
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endif /* #if ( configUSE_STREAM_BUFFERS == 1 ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
|
#if ( configUSE_STREAM_BUFFERS == 1 )
|
||||||
|
|
||||||
size_t MPU_xStreamBufferSpacesAvailable( StreamBufferHandle_t xStreamBuffer ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
size_t MPU_xStreamBufferSpacesAvailable( StreamBufferHandle_t xStreamBuffer ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
||||||
|
|
||||||
size_t MPU_xStreamBufferSpacesAvailable( StreamBufferHandle_t xStreamBuffer ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */
|
size_t MPU_xStreamBufferSpacesAvailable( StreamBufferHandle_t xStreamBuffer ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */
|
||||||
|
@ -1928,8 +1962,12 @@
|
||||||
: : "i" ( SYSTEM_CALL_xStreamBufferSpacesAvailable ) : "memory"
|
: : "i" ( SYSTEM_CALL_xStreamBufferSpacesAvailable ) : "memory"
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endif /* #if ( configUSE_STREAM_BUFFERS == 1 ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
|
#if ( configUSE_STREAM_BUFFERS == 1 )
|
||||||
|
|
||||||
size_t MPU_xStreamBufferBytesAvailable( StreamBufferHandle_t xStreamBuffer ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
size_t MPU_xStreamBufferBytesAvailable( StreamBufferHandle_t xStreamBuffer ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
||||||
|
|
||||||
size_t MPU_xStreamBufferBytesAvailable( StreamBufferHandle_t xStreamBuffer ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */
|
size_t MPU_xStreamBufferBytesAvailable( StreamBufferHandle_t xStreamBuffer ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */
|
||||||
|
@ -1952,8 +1990,12 @@
|
||||||
: : "i" ( SYSTEM_CALL_xStreamBufferBytesAvailable ) : "memory"
|
: : "i" ( SYSTEM_CALL_xStreamBufferBytesAvailable ) : "memory"
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endif /* #if ( configUSE_STREAM_BUFFERS == 1 ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
|
#if ( configUSE_STREAM_BUFFERS == 1 )
|
||||||
|
|
||||||
BaseType_t MPU_xStreamBufferSetTriggerLevel( StreamBufferHandle_t xStreamBuffer,
|
BaseType_t MPU_xStreamBufferSetTriggerLevel( StreamBufferHandle_t xStreamBuffer,
|
||||||
size_t xTriggerLevel ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
size_t xTriggerLevel ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
||||||
|
|
||||||
|
@ -1978,8 +2020,12 @@
|
||||||
: : "i" ( SYSTEM_CALL_xStreamBufferSetTriggerLevel ) : "memory"
|
: : "i" ( SYSTEM_CALL_xStreamBufferSetTriggerLevel ) : "memory"
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endif /* #if ( configUSE_STREAM_BUFFERS == 1 ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
|
#if ( configUSE_STREAM_BUFFERS == 1 )
|
||||||
|
|
||||||
size_t MPU_xStreamBufferNextMessageLengthBytes( StreamBufferHandle_t xStreamBuffer ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
size_t MPU_xStreamBufferNextMessageLengthBytes( StreamBufferHandle_t xStreamBuffer ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
||||||
|
|
||||||
size_t MPU_xStreamBufferNextMessageLengthBytes( StreamBufferHandle_t xStreamBuffer ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */
|
size_t MPU_xStreamBufferNextMessageLengthBytes( StreamBufferHandle_t xStreamBuffer ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */
|
||||||
|
@ -2002,6 +2048,8 @@
|
||||||
: : "i" ( SYSTEM_CALL_xStreamBufferNextMessageLengthBytes ) : "memory"
|
: : "i" ( SYSTEM_CALL_xStreamBufferNextMessageLengthBytes ) : "memory"
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endif /* #if ( configUSE_STREAM_BUFFERS == 1 ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
#endif /* ( configENABLE_MPU == 1 ) && ( configUSE_MPU_WRAPPERS_V1 == 0 ) */
|
#endif /* ( configENABLE_MPU == 1 ) && ( configUSE_MPU_WRAPPERS_V1 == 0 ) */
|
||||||
|
|
|
@ -1634,6 +1634,8 @@
|
||||||
#endif /* if ( configUSE_TIMERS == 1 ) */
|
#endif /* if ( configUSE_TIMERS == 1 ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
|
#if ( configUSE_EVENT_GROUPS == 1 )
|
||||||
|
|
||||||
EventBits_t MPU_xEventGroupWaitBitsEntry( const xEventGroupWaitBitsParams_t * pxParams ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
EventBits_t MPU_xEventGroupWaitBitsEntry( const xEventGroupWaitBitsParams_t * pxParams ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
||||||
|
|
||||||
EventBits_t MPU_xEventGroupWaitBitsEntry( const xEventGroupWaitBitsParams_t * pxParams ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */
|
EventBits_t MPU_xEventGroupWaitBitsEntry( const xEventGroupWaitBitsParams_t * pxParams ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */
|
||||||
|
@ -1656,8 +1658,12 @@
|
||||||
: : "i" ( SYSTEM_CALL_xEventGroupWaitBits ) : "memory"
|
: : "i" ( SYSTEM_CALL_xEventGroupWaitBits ) : "memory"
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endif /* #if ( configUSE_EVENT_GROUPS == 1 ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
|
#if ( configUSE_EVENT_GROUPS == 1 )
|
||||||
|
|
||||||
EventBits_t MPU_xEventGroupClearBits( EventGroupHandle_t xEventGroup,
|
EventBits_t MPU_xEventGroupClearBits( EventGroupHandle_t xEventGroup,
|
||||||
const EventBits_t uxBitsToClear ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
const EventBits_t uxBitsToClear ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
||||||
|
|
||||||
|
@ -1682,8 +1688,12 @@
|
||||||
: : "i" ( SYSTEM_CALL_xEventGroupClearBits ) : "memory"
|
: : "i" ( SYSTEM_CALL_xEventGroupClearBits ) : "memory"
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endif /* #if ( configUSE_EVENT_GROUPS == 1 ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
|
#if ( configUSE_EVENT_GROUPS == 1 )
|
||||||
|
|
||||||
EventBits_t MPU_xEventGroupSetBits( EventGroupHandle_t xEventGroup,
|
EventBits_t MPU_xEventGroupSetBits( EventGroupHandle_t xEventGroup,
|
||||||
const EventBits_t uxBitsToSet ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
const EventBits_t uxBitsToSet ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
||||||
|
|
||||||
|
@ -1708,8 +1718,13 @@
|
||||||
: : "i" ( SYSTEM_CALL_xEventGroupSetBits ) : "memory"
|
: : "i" ( SYSTEM_CALL_xEventGroupSetBits ) : "memory"
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endif /* #if ( configUSE_EVENT_GROUPS == 1 ) */
|
||||||
|
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
|
#if ( configUSE_EVENT_GROUPS == 1 )
|
||||||
|
|
||||||
EventBits_t MPU_xEventGroupSync( EventGroupHandle_t xEventGroup,
|
EventBits_t MPU_xEventGroupSync( EventGroupHandle_t xEventGroup,
|
||||||
const EventBits_t uxBitsToSet,
|
const EventBits_t uxBitsToSet,
|
||||||
const EventBits_t uxBitsToWaitFor,
|
const EventBits_t uxBitsToWaitFor,
|
||||||
|
@ -1738,9 +1753,11 @@
|
||||||
: : "i" ( SYSTEM_CALL_xEventGroupSync ) : "memory"
|
: : "i" ( SYSTEM_CALL_xEventGroupSync ) : "memory"
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endif /* #if ( configUSE_EVENT_GROUPS == 1 ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
#if ( configUSE_TRACE_FACILITY == 1 )
|
#if ( ( configUSE_EVENT_GROUPS == 1 ) && ( configUSE_TRACE_FACILITY == 1 ) )
|
||||||
|
|
||||||
UBaseType_t MPU_uxEventGroupGetNumber( void * xEventGroup ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
UBaseType_t MPU_uxEventGroupGetNumber( void * xEventGroup ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
||||||
|
|
||||||
|
@ -1765,10 +1782,10 @@
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
#endif /*( configUSE_TRACE_FACILITY == 1 )*/
|
#endif /* #if ( ( configUSE_EVENT_GROUPS == 1 ) && ( configUSE_TRACE_FACILITY == 1 ) ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
#if ( configUSE_TRACE_FACILITY == 1 )
|
#if ( ( configUSE_EVENT_GROUPS == 1 ) && ( configUSE_TRACE_FACILITY == 1 ) )
|
||||||
|
|
||||||
void MPU_vEventGroupSetNumber( void * xEventGroup,
|
void MPU_vEventGroupSetNumber( void * xEventGroup,
|
||||||
UBaseType_t uxEventGroupNumber ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
UBaseType_t uxEventGroupNumber ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
||||||
|
@ -1795,9 +1812,11 @@
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
#endif /*( configUSE_TRACE_FACILITY == 1 )*/
|
#endif /* #if ( ( configUSE_EVENT_GROUPS == 1 ) && ( configUSE_TRACE_FACILITY == 1 ) ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
|
#if ( configUSE_STREAM_BUFFERS == 1 )
|
||||||
|
|
||||||
size_t MPU_xStreamBufferSend( StreamBufferHandle_t xStreamBuffer,
|
size_t MPU_xStreamBufferSend( StreamBufferHandle_t xStreamBuffer,
|
||||||
const void * pvTxData,
|
const void * pvTxData,
|
||||||
size_t xDataLengthBytes,
|
size_t xDataLengthBytes,
|
||||||
|
@ -1826,8 +1845,12 @@
|
||||||
: : "i" ( SYSTEM_CALL_xStreamBufferSend ) : "memory"
|
: : "i" ( SYSTEM_CALL_xStreamBufferSend ) : "memory"
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endif /* #if ( configUSE_STREAM_BUFFERS == 1 ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
|
#if ( configUSE_STREAM_BUFFERS == 1 )
|
||||||
|
|
||||||
size_t MPU_xStreamBufferReceive( StreamBufferHandle_t xStreamBuffer,
|
size_t MPU_xStreamBufferReceive( StreamBufferHandle_t xStreamBuffer,
|
||||||
void * pvRxData,
|
void * pvRxData,
|
||||||
size_t xBufferLengthBytes,
|
size_t xBufferLengthBytes,
|
||||||
|
@ -1856,8 +1879,12 @@
|
||||||
: : "i" ( SYSTEM_CALL_xStreamBufferReceive ) : "memory"
|
: : "i" ( SYSTEM_CALL_xStreamBufferReceive ) : "memory"
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endif /* #if ( configUSE_STREAM_BUFFERS == 1 ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
|
#if ( configUSE_STREAM_BUFFERS == 1 )
|
||||||
|
|
||||||
BaseType_t MPU_xStreamBufferIsFull( StreamBufferHandle_t xStreamBuffer ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
BaseType_t MPU_xStreamBufferIsFull( StreamBufferHandle_t xStreamBuffer ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
||||||
|
|
||||||
BaseType_t MPU_xStreamBufferIsFull( StreamBufferHandle_t xStreamBuffer ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */
|
BaseType_t MPU_xStreamBufferIsFull( StreamBufferHandle_t xStreamBuffer ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */
|
||||||
|
@ -1880,8 +1907,12 @@
|
||||||
: : "i" ( SYSTEM_CALL_xStreamBufferIsFull ) : "memory"
|
: : "i" ( SYSTEM_CALL_xStreamBufferIsFull ) : "memory"
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endif /* #if ( configUSE_STREAM_BUFFERS == 1 ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
|
#if ( configUSE_STREAM_BUFFERS == 1 )
|
||||||
|
|
||||||
BaseType_t MPU_xStreamBufferIsEmpty( StreamBufferHandle_t xStreamBuffer ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
BaseType_t MPU_xStreamBufferIsEmpty( StreamBufferHandle_t xStreamBuffer ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
||||||
|
|
||||||
BaseType_t MPU_xStreamBufferIsEmpty( StreamBufferHandle_t xStreamBuffer ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */
|
BaseType_t MPU_xStreamBufferIsEmpty( StreamBufferHandle_t xStreamBuffer ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */
|
||||||
|
@ -1904,8 +1935,12 @@
|
||||||
: : "i" ( SYSTEM_CALL_xStreamBufferIsEmpty ) : "memory"
|
: : "i" ( SYSTEM_CALL_xStreamBufferIsEmpty ) : "memory"
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endif /* #if ( configUSE_STREAM_BUFFERS == 1 ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
|
#if ( configUSE_STREAM_BUFFERS == 1 )
|
||||||
|
|
||||||
size_t MPU_xStreamBufferSpacesAvailable( StreamBufferHandle_t xStreamBuffer ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
size_t MPU_xStreamBufferSpacesAvailable( StreamBufferHandle_t xStreamBuffer ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
||||||
|
|
||||||
size_t MPU_xStreamBufferSpacesAvailable( StreamBufferHandle_t xStreamBuffer ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */
|
size_t MPU_xStreamBufferSpacesAvailable( StreamBufferHandle_t xStreamBuffer ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */
|
||||||
|
@ -1928,8 +1963,12 @@
|
||||||
: : "i" ( SYSTEM_CALL_xStreamBufferSpacesAvailable ) : "memory"
|
: : "i" ( SYSTEM_CALL_xStreamBufferSpacesAvailable ) : "memory"
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endif /* #if ( configUSE_STREAM_BUFFERS == 1 ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
|
#if ( configUSE_STREAM_BUFFERS == 1 )
|
||||||
|
|
||||||
size_t MPU_xStreamBufferBytesAvailable( StreamBufferHandle_t xStreamBuffer ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
size_t MPU_xStreamBufferBytesAvailable( StreamBufferHandle_t xStreamBuffer ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
||||||
|
|
||||||
size_t MPU_xStreamBufferBytesAvailable( StreamBufferHandle_t xStreamBuffer ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */
|
size_t MPU_xStreamBufferBytesAvailable( StreamBufferHandle_t xStreamBuffer ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */
|
||||||
|
@ -1952,8 +1991,12 @@
|
||||||
: : "i" ( SYSTEM_CALL_xStreamBufferBytesAvailable ) : "memory"
|
: : "i" ( SYSTEM_CALL_xStreamBufferBytesAvailable ) : "memory"
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endif /* #if ( configUSE_STREAM_BUFFERS == 1 ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
|
#if ( configUSE_STREAM_BUFFERS == 1 )
|
||||||
|
|
||||||
BaseType_t MPU_xStreamBufferSetTriggerLevel( StreamBufferHandle_t xStreamBuffer,
|
BaseType_t MPU_xStreamBufferSetTriggerLevel( StreamBufferHandle_t xStreamBuffer,
|
||||||
size_t xTriggerLevel ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
size_t xTriggerLevel ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
||||||
|
|
||||||
|
@ -1978,8 +2021,12 @@
|
||||||
: : "i" ( SYSTEM_CALL_xStreamBufferSetTriggerLevel ) : "memory"
|
: : "i" ( SYSTEM_CALL_xStreamBufferSetTriggerLevel ) : "memory"
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endif /* #if ( configUSE_STREAM_BUFFERS == 1 ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
|
#if ( configUSE_STREAM_BUFFERS == 1 )
|
||||||
|
|
||||||
size_t MPU_xStreamBufferNextMessageLengthBytes( StreamBufferHandle_t xStreamBuffer ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
size_t MPU_xStreamBufferNextMessageLengthBytes( StreamBufferHandle_t xStreamBuffer ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
||||||
|
|
||||||
size_t MPU_xStreamBufferNextMessageLengthBytes( StreamBufferHandle_t xStreamBuffer ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */
|
size_t MPU_xStreamBufferNextMessageLengthBytes( StreamBufferHandle_t xStreamBuffer ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */
|
||||||
|
@ -2002,6 +2049,8 @@
|
||||||
: : "i" ( SYSTEM_CALL_xStreamBufferNextMessageLengthBytes ) : "memory"
|
: : "i" ( SYSTEM_CALL_xStreamBufferNextMessageLengthBytes ) : "memory"
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endif /* #if ( configUSE_STREAM_BUFFERS == 1 ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
#endif /* ( configENABLE_MPU == 1 ) && ( configUSE_MPU_WRAPPERS_V1 == 0 ) */
|
#endif /* ( configENABLE_MPU == 1 ) && ( configUSE_MPU_WRAPPERS_V1 == 0 ) */
|
||||||
|
|
|
@ -1634,6 +1634,8 @@
|
||||||
#endif /* if ( configUSE_TIMERS == 1 ) */
|
#endif /* if ( configUSE_TIMERS == 1 ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
|
#if ( configUSE_EVENT_GROUPS == 1 )
|
||||||
|
|
||||||
EventBits_t MPU_xEventGroupWaitBitsEntry( const xEventGroupWaitBitsParams_t * pxParams ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
EventBits_t MPU_xEventGroupWaitBitsEntry( const xEventGroupWaitBitsParams_t * pxParams ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
||||||
|
|
||||||
EventBits_t MPU_xEventGroupWaitBitsEntry( const xEventGroupWaitBitsParams_t * pxParams ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */
|
EventBits_t MPU_xEventGroupWaitBitsEntry( const xEventGroupWaitBitsParams_t * pxParams ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */
|
||||||
|
@ -1656,8 +1658,12 @@
|
||||||
: : "i" ( SYSTEM_CALL_xEventGroupWaitBits ) : "memory"
|
: : "i" ( SYSTEM_CALL_xEventGroupWaitBits ) : "memory"
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endif /* #if ( configUSE_EVENT_GROUPS == 1 ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
|
#if ( configUSE_EVENT_GROUPS == 1 )
|
||||||
|
|
||||||
EventBits_t MPU_xEventGroupClearBits( EventGroupHandle_t xEventGroup,
|
EventBits_t MPU_xEventGroupClearBits( EventGroupHandle_t xEventGroup,
|
||||||
const EventBits_t uxBitsToClear ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
const EventBits_t uxBitsToClear ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
||||||
|
|
||||||
|
@ -1682,8 +1688,12 @@
|
||||||
: : "i" ( SYSTEM_CALL_xEventGroupClearBits ) : "memory"
|
: : "i" ( SYSTEM_CALL_xEventGroupClearBits ) : "memory"
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endif /* #if ( configUSE_EVENT_GROUPS == 1 ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
|
#if ( configUSE_EVENT_GROUPS == 1 )
|
||||||
|
|
||||||
EventBits_t MPU_xEventGroupSetBits( EventGroupHandle_t xEventGroup,
|
EventBits_t MPU_xEventGroupSetBits( EventGroupHandle_t xEventGroup,
|
||||||
const EventBits_t uxBitsToSet ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
const EventBits_t uxBitsToSet ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
||||||
|
|
||||||
|
@ -1708,8 +1718,12 @@
|
||||||
: : "i" ( SYSTEM_CALL_xEventGroupSetBits ) : "memory"
|
: : "i" ( SYSTEM_CALL_xEventGroupSetBits ) : "memory"
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endif /* #if ( configUSE_EVENT_GROUPS == 1 ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
|
#if ( configUSE_EVENT_GROUPS == 1 )
|
||||||
|
|
||||||
EventBits_t MPU_xEventGroupSync( EventGroupHandle_t xEventGroup,
|
EventBits_t MPU_xEventGroupSync( EventGroupHandle_t xEventGroup,
|
||||||
const EventBits_t uxBitsToSet,
|
const EventBits_t uxBitsToSet,
|
||||||
const EventBits_t uxBitsToWaitFor,
|
const EventBits_t uxBitsToWaitFor,
|
||||||
|
@ -1738,9 +1752,11 @@
|
||||||
: : "i" ( SYSTEM_CALL_xEventGroupSync ) : "memory"
|
: : "i" ( SYSTEM_CALL_xEventGroupSync ) : "memory"
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endif /* #if ( configUSE_EVENT_GROUPS == 1 ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
#if ( configUSE_TRACE_FACILITY == 1 )
|
#if ( ( configUSE_EVENT_GROUPS == 1 ) && ( configUSE_TRACE_FACILITY == 1 ) )
|
||||||
|
|
||||||
UBaseType_t MPU_uxEventGroupGetNumber( void * xEventGroup ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
UBaseType_t MPU_uxEventGroupGetNumber( void * xEventGroup ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
||||||
|
|
||||||
|
@ -1765,10 +1781,10 @@
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
#endif /*( configUSE_TRACE_FACILITY == 1 )*/
|
#endif /* #if ( ( configUSE_EVENT_GROUPS == 1 ) && ( configUSE_TRACE_FACILITY == 1 ) ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
#if ( configUSE_TRACE_FACILITY == 1 )
|
#if ( ( configUSE_EVENT_GROUPS == 1 ) && ( configUSE_TRACE_FACILITY == 1 ) )
|
||||||
|
|
||||||
void MPU_vEventGroupSetNumber( void * xEventGroup,
|
void MPU_vEventGroupSetNumber( void * xEventGroup,
|
||||||
UBaseType_t uxEventGroupNumber ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
UBaseType_t uxEventGroupNumber ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
||||||
|
@ -1795,9 +1811,11 @@
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
#endif /*( configUSE_TRACE_FACILITY == 1 )*/
|
#endif /* #if ( ( configUSE_EVENT_GROUPS == 1 ) && ( configUSE_TRACE_FACILITY == 1 ) ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
|
#if ( configUSE_STREAM_BUFFERS == 1 )
|
||||||
|
|
||||||
size_t MPU_xStreamBufferSend( StreamBufferHandle_t xStreamBuffer,
|
size_t MPU_xStreamBufferSend( StreamBufferHandle_t xStreamBuffer,
|
||||||
const void * pvTxData,
|
const void * pvTxData,
|
||||||
size_t xDataLengthBytes,
|
size_t xDataLengthBytes,
|
||||||
|
@ -1826,8 +1844,12 @@
|
||||||
: : "i" ( SYSTEM_CALL_xStreamBufferSend ) : "memory"
|
: : "i" ( SYSTEM_CALL_xStreamBufferSend ) : "memory"
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endif /* #if ( configUSE_STREAM_BUFFERS == 1 ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
|
#if ( configUSE_STREAM_BUFFERS == 1 )
|
||||||
|
|
||||||
size_t MPU_xStreamBufferReceive( StreamBufferHandle_t xStreamBuffer,
|
size_t MPU_xStreamBufferReceive( StreamBufferHandle_t xStreamBuffer,
|
||||||
void * pvRxData,
|
void * pvRxData,
|
||||||
size_t xBufferLengthBytes,
|
size_t xBufferLengthBytes,
|
||||||
|
@ -1856,8 +1878,12 @@
|
||||||
: : "i" ( SYSTEM_CALL_xStreamBufferReceive ) : "memory"
|
: : "i" ( SYSTEM_CALL_xStreamBufferReceive ) : "memory"
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endif /* #if ( configUSE_STREAM_BUFFERS == 1 ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
|
#if ( configUSE_STREAM_BUFFERS == 1 )
|
||||||
|
|
||||||
BaseType_t MPU_xStreamBufferIsFull( StreamBufferHandle_t xStreamBuffer ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
BaseType_t MPU_xStreamBufferIsFull( StreamBufferHandle_t xStreamBuffer ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
||||||
|
|
||||||
BaseType_t MPU_xStreamBufferIsFull( StreamBufferHandle_t xStreamBuffer ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */
|
BaseType_t MPU_xStreamBufferIsFull( StreamBufferHandle_t xStreamBuffer ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */
|
||||||
|
@ -1880,8 +1906,12 @@
|
||||||
: : "i" ( SYSTEM_CALL_xStreamBufferIsFull ) : "memory"
|
: : "i" ( SYSTEM_CALL_xStreamBufferIsFull ) : "memory"
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endif /* #if ( configUSE_STREAM_BUFFERS == 1 ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
|
#if ( configUSE_STREAM_BUFFERS == 1 )
|
||||||
|
|
||||||
BaseType_t MPU_xStreamBufferIsEmpty( StreamBufferHandle_t xStreamBuffer ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
BaseType_t MPU_xStreamBufferIsEmpty( StreamBufferHandle_t xStreamBuffer ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
||||||
|
|
||||||
BaseType_t MPU_xStreamBufferIsEmpty( StreamBufferHandle_t xStreamBuffer ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */
|
BaseType_t MPU_xStreamBufferIsEmpty( StreamBufferHandle_t xStreamBuffer ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */
|
||||||
|
@ -1904,8 +1934,12 @@
|
||||||
: : "i" ( SYSTEM_CALL_xStreamBufferIsEmpty ) : "memory"
|
: : "i" ( SYSTEM_CALL_xStreamBufferIsEmpty ) : "memory"
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endif /* #if ( configUSE_STREAM_BUFFERS == 1 ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
|
#if ( configUSE_STREAM_BUFFERS == 1 )
|
||||||
|
|
||||||
size_t MPU_xStreamBufferSpacesAvailable( StreamBufferHandle_t xStreamBuffer ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
size_t MPU_xStreamBufferSpacesAvailable( StreamBufferHandle_t xStreamBuffer ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
||||||
|
|
||||||
size_t MPU_xStreamBufferSpacesAvailable( StreamBufferHandle_t xStreamBuffer ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */
|
size_t MPU_xStreamBufferSpacesAvailable( StreamBufferHandle_t xStreamBuffer ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */
|
||||||
|
@ -1928,8 +1962,12 @@
|
||||||
: : "i" ( SYSTEM_CALL_xStreamBufferSpacesAvailable ) : "memory"
|
: : "i" ( SYSTEM_CALL_xStreamBufferSpacesAvailable ) : "memory"
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endif /* #if ( configUSE_STREAM_BUFFERS == 1 ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
|
#if ( configUSE_STREAM_BUFFERS == 1 )
|
||||||
|
|
||||||
size_t MPU_xStreamBufferBytesAvailable( StreamBufferHandle_t xStreamBuffer ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
size_t MPU_xStreamBufferBytesAvailable( StreamBufferHandle_t xStreamBuffer ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
||||||
|
|
||||||
size_t MPU_xStreamBufferBytesAvailable( StreamBufferHandle_t xStreamBuffer ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */
|
size_t MPU_xStreamBufferBytesAvailable( StreamBufferHandle_t xStreamBuffer ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */
|
||||||
|
@ -1952,8 +1990,12 @@
|
||||||
: : "i" ( SYSTEM_CALL_xStreamBufferBytesAvailable ) : "memory"
|
: : "i" ( SYSTEM_CALL_xStreamBufferBytesAvailable ) : "memory"
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endif /* #if ( configUSE_STREAM_BUFFERS == 1 ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
|
#if ( configUSE_STREAM_BUFFERS == 1 )
|
||||||
|
|
||||||
BaseType_t MPU_xStreamBufferSetTriggerLevel( StreamBufferHandle_t xStreamBuffer,
|
BaseType_t MPU_xStreamBufferSetTriggerLevel( StreamBufferHandle_t xStreamBuffer,
|
||||||
size_t xTriggerLevel ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
size_t xTriggerLevel ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
||||||
|
|
||||||
|
@ -1978,8 +2020,12 @@
|
||||||
: : "i" ( SYSTEM_CALL_xStreamBufferSetTriggerLevel ) : "memory"
|
: : "i" ( SYSTEM_CALL_xStreamBufferSetTriggerLevel ) : "memory"
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endif /* #if ( configUSE_STREAM_BUFFERS == 1 ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
|
#if ( configUSE_STREAM_BUFFERS == 1 )
|
||||||
|
|
||||||
size_t MPU_xStreamBufferNextMessageLengthBytes( StreamBufferHandle_t xStreamBuffer ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
size_t MPU_xStreamBufferNextMessageLengthBytes( StreamBufferHandle_t xStreamBuffer ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
||||||
|
|
||||||
size_t MPU_xStreamBufferNextMessageLengthBytes( StreamBufferHandle_t xStreamBuffer ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */
|
size_t MPU_xStreamBufferNextMessageLengthBytes( StreamBufferHandle_t xStreamBuffer ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */
|
||||||
|
@ -2002,6 +2048,8 @@
|
||||||
: : "i" ( SYSTEM_CALL_xStreamBufferNextMessageLengthBytes ) : "memory"
|
: : "i" ( SYSTEM_CALL_xStreamBufferNextMessageLengthBytes ) : "memory"
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endif /* #if ( configUSE_STREAM_BUFFERS == 1 ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
#endif /* ( configENABLE_MPU == 1 ) && ( configUSE_MPU_WRAPPERS_V1 == 0 ) */
|
#endif /* ( configENABLE_MPU == 1 ) && ( configUSE_MPU_WRAPPERS_V1 == 0 ) */
|
||||||
|
|
|
@ -1634,6 +1634,8 @@
|
||||||
#endif /* if ( configUSE_TIMERS == 1 ) */
|
#endif /* if ( configUSE_TIMERS == 1 ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
|
#if ( configUSE_EVENT_GROUPS == 1 )
|
||||||
|
|
||||||
EventBits_t MPU_xEventGroupWaitBitsEntry( const xEventGroupWaitBitsParams_t * pxParams ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
EventBits_t MPU_xEventGroupWaitBitsEntry( const xEventGroupWaitBitsParams_t * pxParams ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
||||||
|
|
||||||
EventBits_t MPU_xEventGroupWaitBitsEntry( const xEventGroupWaitBitsParams_t * pxParams ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */
|
EventBits_t MPU_xEventGroupWaitBitsEntry( const xEventGroupWaitBitsParams_t * pxParams ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */
|
||||||
|
@ -1646,18 +1648,23 @@
|
||||||
" push {r0} \n"
|
" push {r0} \n"
|
||||||
" mrs r0, control \n"
|
" mrs r0, control \n"
|
||||||
" tst r0, #1 \n"
|
" tst r0, #1 \n"
|
||||||
" pop {r0} \n"
|
|
||||||
" bne MPU_xEventGroupWaitBits_Unpriv \n"
|
" bne MPU_xEventGroupWaitBits_Unpriv \n"
|
||||||
" MPU_xEventGroupWaitBits_Priv: \n"
|
" MPU_xEventGroupWaitBits_Priv: \n"
|
||||||
|
" pop {r0} \n"
|
||||||
" b MPU_xEventGroupWaitBitsImpl \n"
|
" b MPU_xEventGroupWaitBitsImpl \n"
|
||||||
" MPU_xEventGroupWaitBits_Unpriv: \n"
|
" MPU_xEventGroupWaitBits_Unpriv: \n"
|
||||||
|
" pop {r0} \n"
|
||||||
" svc %0 \n"
|
" svc %0 \n"
|
||||||
" \n"
|
" \n"
|
||||||
: : "i" ( SYSTEM_CALL_xEventGroupWaitBits ) : "memory"
|
: : "i" ( SYSTEM_CALL_xEventGroupWaitBits ) : "memory"
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endif /* #if ( configUSE_EVENT_GROUPS == 1 ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
|
#if ( configUSE_EVENT_GROUPS == 1 )
|
||||||
|
|
||||||
EventBits_t MPU_xEventGroupClearBits( EventGroupHandle_t xEventGroup,
|
EventBits_t MPU_xEventGroupClearBits( EventGroupHandle_t xEventGroup,
|
||||||
const EventBits_t uxBitsToClear ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
const EventBits_t uxBitsToClear ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
||||||
|
|
||||||
|
@ -1672,18 +1679,23 @@
|
||||||
" push {r0} \n"
|
" push {r0} \n"
|
||||||
" mrs r0, control \n"
|
" mrs r0, control \n"
|
||||||
" tst r0, #1 \n"
|
" tst r0, #1 \n"
|
||||||
" pop {r0} \n"
|
|
||||||
" bne MPU_xEventGroupClearBits_Unpriv \n"
|
" bne MPU_xEventGroupClearBits_Unpriv \n"
|
||||||
" MPU_xEventGroupClearBits_Priv: \n"
|
" MPU_xEventGroupClearBits_Priv: \n"
|
||||||
|
" pop {r0} \n"
|
||||||
" b MPU_xEventGroupClearBitsImpl \n"
|
" b MPU_xEventGroupClearBitsImpl \n"
|
||||||
" MPU_xEventGroupClearBits_Unpriv: \n"
|
" MPU_xEventGroupClearBits_Unpriv: \n"
|
||||||
|
" pop {r0} \n"
|
||||||
" svc %0 \n"
|
" svc %0 \n"
|
||||||
" \n"
|
" \n"
|
||||||
: : "i" ( SYSTEM_CALL_xEventGroupClearBits ) : "memory"
|
: : "i" ( SYSTEM_CALL_xEventGroupClearBits ) : "memory"
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endif /* #if ( configUSE_EVENT_GROUPS == 1 ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
|
#if ( configUSE_EVENT_GROUPS == 1 )
|
||||||
|
|
||||||
EventBits_t MPU_xEventGroupSetBits( EventGroupHandle_t xEventGroup,
|
EventBits_t MPU_xEventGroupSetBits( EventGroupHandle_t xEventGroup,
|
||||||
const EventBits_t uxBitsToSet ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
const EventBits_t uxBitsToSet ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
||||||
|
|
||||||
|
@ -1698,18 +1710,23 @@
|
||||||
" push {r0} \n"
|
" push {r0} \n"
|
||||||
" mrs r0, control \n"
|
" mrs r0, control \n"
|
||||||
" tst r0, #1 \n"
|
" tst r0, #1 \n"
|
||||||
" pop {r0} \n"
|
|
||||||
" bne MPU_xEventGroupSetBits_Unpriv \n"
|
" bne MPU_xEventGroupSetBits_Unpriv \n"
|
||||||
" MPU_xEventGroupSetBits_Priv: \n"
|
" MPU_xEventGroupSetBits_Priv: \n"
|
||||||
|
" pop {r0} \n"
|
||||||
" b MPU_xEventGroupSetBitsImpl \n"
|
" b MPU_xEventGroupSetBitsImpl \n"
|
||||||
" MPU_xEventGroupSetBits_Unpriv: \n"
|
" MPU_xEventGroupSetBits_Unpriv: \n"
|
||||||
|
" pop {r0} \n"
|
||||||
" svc %0 \n"
|
" svc %0 \n"
|
||||||
" \n"
|
" \n"
|
||||||
: : "i" ( SYSTEM_CALL_xEventGroupSetBits ) : "memory"
|
: : "i" ( SYSTEM_CALL_xEventGroupSetBits ) : "memory"
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endif /* #if ( configUSE_EVENT_GROUPS == 1 ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
|
#if ( configUSE_EVENT_GROUPS == 1 )
|
||||||
|
|
||||||
EventBits_t MPU_xEventGroupSync( EventGroupHandle_t xEventGroup,
|
EventBits_t MPU_xEventGroupSync( EventGroupHandle_t xEventGroup,
|
||||||
const EventBits_t uxBitsToSet,
|
const EventBits_t uxBitsToSet,
|
||||||
const EventBits_t uxBitsToWaitFor,
|
const EventBits_t uxBitsToWaitFor,
|
||||||
|
@ -1728,19 +1745,22 @@
|
||||||
" push {r0} \n"
|
" push {r0} \n"
|
||||||
" mrs r0, control \n"
|
" mrs r0, control \n"
|
||||||
" tst r0, #1 \n"
|
" tst r0, #1 \n"
|
||||||
" pop {r0} \n"
|
|
||||||
" bne MPU_xEventGroupSync_Unpriv \n"
|
" bne MPU_xEventGroupSync_Unpriv \n"
|
||||||
" MPU_xEventGroupSync_Priv: \n"
|
" MPU_xEventGroupSync_Priv: \n"
|
||||||
|
" pop {r0} \n"
|
||||||
" b MPU_xEventGroupSyncImpl \n"
|
" b MPU_xEventGroupSyncImpl \n"
|
||||||
" MPU_xEventGroupSync_Unpriv: \n"
|
" MPU_xEventGroupSync_Unpriv: \n"
|
||||||
|
" pop {r0} \n"
|
||||||
" svc %0 \n"
|
" svc %0 \n"
|
||||||
" \n"
|
" \n"
|
||||||
: : "i" ( SYSTEM_CALL_xEventGroupSync ) : "memory"
|
: : "i" ( SYSTEM_CALL_xEventGroupSync ) : "memory"
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endif /* #if ( configUSE_EVENT_GROUPS == 1 ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
#if ( configUSE_TRACE_FACILITY == 1 )
|
#if ( ( configUSE_EVENT_GROUPS == 1 ) && ( configUSE_TRACE_FACILITY == 1 ) )
|
||||||
|
|
||||||
UBaseType_t MPU_uxEventGroupGetNumber( void * xEventGroup ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
UBaseType_t MPU_uxEventGroupGetNumber( void * xEventGroup ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
||||||
|
|
||||||
|
@ -1765,10 +1785,10 @@
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
#endif /*( configUSE_TRACE_FACILITY == 1 )*/
|
#endif /* #if ( ( configUSE_EVENT_GROUPS == 1 ) && ( configUSE_TRACE_FACILITY == 1 ) ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
#if ( configUSE_TRACE_FACILITY == 1 )
|
#if ( ( configUSE_EVENT_GROUPS == 1 ) && ( configUSE_TRACE_FACILITY == 1 ) )
|
||||||
|
|
||||||
void MPU_vEventGroupSetNumber( void * xEventGroup,
|
void MPU_vEventGroupSetNumber( void * xEventGroup,
|
||||||
UBaseType_t uxEventGroupNumber ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
UBaseType_t uxEventGroupNumber ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
||||||
|
@ -1795,9 +1815,11 @@
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
#endif /*( configUSE_TRACE_FACILITY == 1 )*/
|
#endif /* #if ( ( configUSE_EVENT_GROUPS == 1 ) && ( configUSE_TRACE_FACILITY == 1 ) ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
|
#if ( configUSE_STREAM_BUFFERS == 1 )
|
||||||
|
|
||||||
size_t MPU_xStreamBufferSend( StreamBufferHandle_t xStreamBuffer,
|
size_t MPU_xStreamBufferSend( StreamBufferHandle_t xStreamBuffer,
|
||||||
const void * pvTxData,
|
const void * pvTxData,
|
||||||
size_t xDataLengthBytes,
|
size_t xDataLengthBytes,
|
||||||
|
@ -1816,18 +1838,23 @@
|
||||||
" push {r0} \n"
|
" push {r0} \n"
|
||||||
" mrs r0, control \n"
|
" mrs r0, control \n"
|
||||||
" tst r0, #1 \n"
|
" tst r0, #1 \n"
|
||||||
" pop {r0} \n"
|
|
||||||
" bne MPU_xStreamBufferSend_Unpriv \n"
|
" bne MPU_xStreamBufferSend_Unpriv \n"
|
||||||
" MPU_xStreamBufferSend_Priv: \n"
|
" MPU_xStreamBufferSend_Priv: \n"
|
||||||
|
" pop {r0} \n"
|
||||||
" b MPU_xStreamBufferSendImpl \n"
|
" b MPU_xStreamBufferSendImpl \n"
|
||||||
" MPU_xStreamBufferSend_Unpriv: \n"
|
" MPU_xStreamBufferSend_Unpriv: \n"
|
||||||
|
" pop {r0} \n"
|
||||||
" svc %0 \n"
|
" svc %0 \n"
|
||||||
" \n"
|
" \n"
|
||||||
: : "i" ( SYSTEM_CALL_xStreamBufferSend ) : "memory"
|
: : "i" ( SYSTEM_CALL_xStreamBufferSend ) : "memory"
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endif /* #if ( configUSE_STREAM_BUFFERS == 1 ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
|
#if ( configUSE_STREAM_BUFFERS == 1 )
|
||||||
|
|
||||||
size_t MPU_xStreamBufferReceive( StreamBufferHandle_t xStreamBuffer,
|
size_t MPU_xStreamBufferReceive( StreamBufferHandle_t xStreamBuffer,
|
||||||
void * pvRxData,
|
void * pvRxData,
|
||||||
size_t xBufferLengthBytes,
|
size_t xBufferLengthBytes,
|
||||||
|
@ -1846,18 +1873,23 @@
|
||||||
" push {r0} \n"
|
" push {r0} \n"
|
||||||
" mrs r0, control \n"
|
" mrs r0, control \n"
|
||||||
" tst r0, #1 \n"
|
" tst r0, #1 \n"
|
||||||
" pop {r0} \n"
|
|
||||||
" bne MPU_xStreamBufferReceive_Unpriv \n"
|
" bne MPU_xStreamBufferReceive_Unpriv \n"
|
||||||
" MPU_xStreamBufferReceive_Priv: \n"
|
" MPU_xStreamBufferReceive_Priv: \n"
|
||||||
|
" pop {r0} \n"
|
||||||
" b MPU_xStreamBufferReceiveImpl \n"
|
" b MPU_xStreamBufferReceiveImpl \n"
|
||||||
" MPU_xStreamBufferReceive_Unpriv: \n"
|
" MPU_xStreamBufferReceive_Unpriv: \n"
|
||||||
|
" pop {r0} \n"
|
||||||
" svc %0 \n"
|
" svc %0 \n"
|
||||||
" \n"
|
" \n"
|
||||||
: : "i" ( SYSTEM_CALL_xStreamBufferReceive ) : "memory"
|
: : "i" ( SYSTEM_CALL_xStreamBufferReceive ) : "memory"
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endif /* #if ( configUSE_STREAM_BUFFERS == 1 ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
|
#if ( configUSE_STREAM_BUFFERS == 1 )
|
||||||
|
|
||||||
BaseType_t MPU_xStreamBufferIsFull( StreamBufferHandle_t xStreamBuffer ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
BaseType_t MPU_xStreamBufferIsFull( StreamBufferHandle_t xStreamBuffer ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
||||||
|
|
||||||
BaseType_t MPU_xStreamBufferIsFull( StreamBufferHandle_t xStreamBuffer ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */
|
BaseType_t MPU_xStreamBufferIsFull( StreamBufferHandle_t xStreamBuffer ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */
|
||||||
|
@ -1870,18 +1902,23 @@
|
||||||
" push {r0} \n"
|
" push {r0} \n"
|
||||||
" mrs r0, control \n"
|
" mrs r0, control \n"
|
||||||
" tst r0, #1 \n"
|
" tst r0, #1 \n"
|
||||||
" pop {r0} \n"
|
|
||||||
" bne MPU_xStreamBufferIsFull_Unpriv \n"
|
" bne MPU_xStreamBufferIsFull_Unpriv \n"
|
||||||
" MPU_xStreamBufferIsFull_Priv: \n"
|
" MPU_xStreamBufferIsFull_Priv: \n"
|
||||||
|
" pop {r0} \n"
|
||||||
" b MPU_xStreamBufferIsFullImpl \n"
|
" b MPU_xStreamBufferIsFullImpl \n"
|
||||||
" MPU_xStreamBufferIsFull_Unpriv: \n"
|
" MPU_xStreamBufferIsFull_Unpriv: \n"
|
||||||
|
" pop {r0} \n"
|
||||||
" svc %0 \n"
|
" svc %0 \n"
|
||||||
" \n"
|
" \n"
|
||||||
: : "i" ( SYSTEM_CALL_xStreamBufferIsFull ) : "memory"
|
: : "i" ( SYSTEM_CALL_xStreamBufferIsFull ) : "memory"
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endif /* #if ( configUSE_STREAM_BUFFERS == 1 ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
|
#if ( configUSE_STREAM_BUFFERS == 1 )
|
||||||
|
|
||||||
BaseType_t MPU_xStreamBufferIsEmpty( StreamBufferHandle_t xStreamBuffer ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
BaseType_t MPU_xStreamBufferIsEmpty( StreamBufferHandle_t xStreamBuffer ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
||||||
|
|
||||||
BaseType_t MPU_xStreamBufferIsEmpty( StreamBufferHandle_t xStreamBuffer ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */
|
BaseType_t MPU_xStreamBufferIsEmpty( StreamBufferHandle_t xStreamBuffer ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */
|
||||||
|
@ -1894,18 +1931,23 @@
|
||||||
" push {r0} \n"
|
" push {r0} \n"
|
||||||
" mrs r0, control \n"
|
" mrs r0, control \n"
|
||||||
" tst r0, #1 \n"
|
" tst r0, #1 \n"
|
||||||
" pop {r0} \n"
|
|
||||||
" bne MPU_xStreamBufferIsEmpty_Unpriv \n"
|
" bne MPU_xStreamBufferIsEmpty_Unpriv \n"
|
||||||
" MPU_xStreamBufferIsEmpty_Priv: \n"
|
" MPU_xStreamBufferIsEmpty_Priv: \n"
|
||||||
|
" pop {r0} \n"
|
||||||
" b MPU_xStreamBufferIsEmptyImpl \n"
|
" b MPU_xStreamBufferIsEmptyImpl \n"
|
||||||
" MPU_xStreamBufferIsEmpty_Unpriv: \n"
|
" MPU_xStreamBufferIsEmpty_Unpriv: \n"
|
||||||
|
" pop {r0} \n"
|
||||||
" svc %0 \n"
|
" svc %0 \n"
|
||||||
" \n"
|
" \n"
|
||||||
: : "i" ( SYSTEM_CALL_xStreamBufferIsEmpty ) : "memory"
|
: : "i" ( SYSTEM_CALL_xStreamBufferIsEmpty ) : "memory"
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endif /* #if ( configUSE_STREAM_BUFFERS == 1 ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
|
#if ( configUSE_STREAM_BUFFERS == 1 )
|
||||||
|
|
||||||
size_t MPU_xStreamBufferSpacesAvailable( StreamBufferHandle_t xStreamBuffer ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
size_t MPU_xStreamBufferSpacesAvailable( StreamBufferHandle_t xStreamBuffer ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
||||||
|
|
||||||
size_t MPU_xStreamBufferSpacesAvailable( StreamBufferHandle_t xStreamBuffer ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */
|
size_t MPU_xStreamBufferSpacesAvailable( StreamBufferHandle_t xStreamBuffer ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */
|
||||||
|
@ -1918,18 +1960,23 @@
|
||||||
" push {r0} \n"
|
" push {r0} \n"
|
||||||
" mrs r0, control \n"
|
" mrs r0, control \n"
|
||||||
" tst r0, #1 \n"
|
" tst r0, #1 \n"
|
||||||
" pop {r0} \n"
|
|
||||||
" bne MPU_xStreamBufferSpacesAvailable_Unpriv \n"
|
" bne MPU_xStreamBufferSpacesAvailable_Unpriv \n"
|
||||||
" MPU_xStreamBufferSpacesAvailable_Priv: \n"
|
" MPU_xStreamBufferSpacesAvailable_Priv: \n"
|
||||||
|
" pop {r0} \n"
|
||||||
" b MPU_xStreamBufferSpacesAvailableImpl \n"
|
" b MPU_xStreamBufferSpacesAvailableImpl \n"
|
||||||
" MPU_xStreamBufferSpacesAvailable_Unpriv: \n"
|
" MPU_xStreamBufferSpacesAvailable_Unpriv: \n"
|
||||||
|
" pop {r0} \n"
|
||||||
" svc %0 \n"
|
" svc %0 \n"
|
||||||
" \n"
|
" \n"
|
||||||
: : "i" ( SYSTEM_CALL_xStreamBufferSpacesAvailable ) : "memory"
|
: : "i" ( SYSTEM_CALL_xStreamBufferSpacesAvailable ) : "memory"
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endif /* #if ( configUSE_STREAM_BUFFERS == 1 ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
|
#if ( configUSE_STREAM_BUFFERS == 1 )
|
||||||
|
|
||||||
size_t MPU_xStreamBufferBytesAvailable( StreamBufferHandle_t xStreamBuffer ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
size_t MPU_xStreamBufferBytesAvailable( StreamBufferHandle_t xStreamBuffer ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
||||||
|
|
||||||
size_t MPU_xStreamBufferBytesAvailable( StreamBufferHandle_t xStreamBuffer ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */
|
size_t MPU_xStreamBufferBytesAvailable( StreamBufferHandle_t xStreamBuffer ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */
|
||||||
|
@ -1942,18 +1989,23 @@
|
||||||
" push {r0} \n"
|
" push {r0} \n"
|
||||||
" mrs r0, control \n"
|
" mrs r0, control \n"
|
||||||
" tst r0, #1 \n"
|
" tst r0, #1 \n"
|
||||||
" pop {r0} \n"
|
|
||||||
" bne MPU_xStreamBufferBytesAvailable_Unpriv \n"
|
" bne MPU_xStreamBufferBytesAvailable_Unpriv \n"
|
||||||
" MPU_xStreamBufferBytesAvailable_Priv: \n"
|
" MPU_xStreamBufferBytesAvailable_Priv: \n"
|
||||||
|
" pop {r0} \n"
|
||||||
" b MPU_xStreamBufferBytesAvailableImpl \n"
|
" b MPU_xStreamBufferBytesAvailableImpl \n"
|
||||||
" MPU_xStreamBufferBytesAvailable_Unpriv: \n"
|
" MPU_xStreamBufferBytesAvailable_Unpriv: \n"
|
||||||
|
" pop {r0} \n"
|
||||||
" svc %0 \n"
|
" svc %0 \n"
|
||||||
" \n"
|
" \n"
|
||||||
: : "i" ( SYSTEM_CALL_xStreamBufferBytesAvailable ) : "memory"
|
: : "i" ( SYSTEM_CALL_xStreamBufferBytesAvailable ) : "memory"
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endif /* #if ( configUSE_STREAM_BUFFERS == 1 ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
|
#if ( configUSE_STREAM_BUFFERS == 1 )
|
||||||
|
|
||||||
BaseType_t MPU_xStreamBufferSetTriggerLevel( StreamBufferHandle_t xStreamBuffer,
|
BaseType_t MPU_xStreamBufferSetTriggerLevel( StreamBufferHandle_t xStreamBuffer,
|
||||||
size_t xTriggerLevel ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
size_t xTriggerLevel ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
||||||
|
|
||||||
|
@ -1968,18 +2020,23 @@
|
||||||
" push {r0} \n"
|
" push {r0} \n"
|
||||||
" mrs r0, control \n"
|
" mrs r0, control \n"
|
||||||
" tst r0, #1 \n"
|
" tst r0, #1 \n"
|
||||||
" pop {r0} \n"
|
|
||||||
" bne MPU_xStreamBufferSetTriggerLevel_Unpriv \n"
|
" bne MPU_xStreamBufferSetTriggerLevel_Unpriv \n"
|
||||||
" MPU_xStreamBufferSetTriggerLevel_Priv: \n"
|
" MPU_xStreamBufferSetTriggerLevel_Priv: \n"
|
||||||
|
" pop {r0} \n"
|
||||||
" b MPU_xStreamBufferSetTriggerLevelImpl \n"
|
" b MPU_xStreamBufferSetTriggerLevelImpl \n"
|
||||||
" MPU_xStreamBufferSetTriggerLevel_Unpriv: \n"
|
" MPU_xStreamBufferSetTriggerLevel_Unpriv: \n"
|
||||||
|
" pop {r0} \n"
|
||||||
" svc %0 \n"
|
" svc %0 \n"
|
||||||
" \n"
|
" \n"
|
||||||
: : "i" ( SYSTEM_CALL_xStreamBufferSetTriggerLevel ) : "memory"
|
: : "i" ( SYSTEM_CALL_xStreamBufferSetTriggerLevel ) : "memory"
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endif /* #if ( configUSE_STREAM_BUFFERS == 1 ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
|
#if ( configUSE_STREAM_BUFFERS == 1 )
|
||||||
|
|
||||||
size_t MPU_xStreamBufferNextMessageLengthBytes( StreamBufferHandle_t xStreamBuffer ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
size_t MPU_xStreamBufferNextMessageLengthBytes( StreamBufferHandle_t xStreamBuffer ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
||||||
|
|
||||||
size_t MPU_xStreamBufferNextMessageLengthBytes( StreamBufferHandle_t xStreamBuffer ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */
|
size_t MPU_xStreamBufferNextMessageLengthBytes( StreamBufferHandle_t xStreamBuffer ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */
|
||||||
|
@ -1992,16 +2049,19 @@
|
||||||
" push {r0} \n"
|
" push {r0} \n"
|
||||||
" mrs r0, control \n"
|
" mrs r0, control \n"
|
||||||
" tst r0, #1 \n"
|
" tst r0, #1 \n"
|
||||||
" pop {r0} \n"
|
|
||||||
" bne MPU_xStreamBufferNextMessageLengthBytes_Unpriv \n"
|
" bne MPU_xStreamBufferNextMessageLengthBytes_Unpriv \n"
|
||||||
" MPU_xStreamBufferNextMessageLengthBytes_Priv: \n"
|
" MPU_xStreamBufferNextMessageLengthBytes_Priv: \n"
|
||||||
|
" pop {r0} \n"
|
||||||
" b MPU_xStreamBufferNextMessageLengthBytesImpl \n"
|
" b MPU_xStreamBufferNextMessageLengthBytesImpl \n"
|
||||||
" MPU_xStreamBufferNextMessageLengthBytes_Unpriv: \n"
|
" MPU_xStreamBufferNextMessageLengthBytes_Unpriv: \n"
|
||||||
|
" pop {r0} \n"
|
||||||
" svc %0 \n"
|
" svc %0 \n"
|
||||||
" \n"
|
" \n"
|
||||||
: : "i" ( SYSTEM_CALL_xStreamBufferNextMessageLengthBytes ) : "memory"
|
: : "i" ( SYSTEM_CALL_xStreamBufferNextMessageLengthBytes ) : "memory"
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endif /* #if ( configUSE_STREAM_BUFFERS == 1 ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
#endif /* configUSE_MPU_WRAPPERS_V1 == 0 */
|
#endif /* configUSE_MPU_WRAPPERS_V1 == 0 */
|
||||||
|
|
|
@ -1634,6 +1634,8 @@
|
||||||
#endif /* if ( configUSE_TIMERS == 1 ) */
|
#endif /* if ( configUSE_TIMERS == 1 ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
|
#if ( configUSE_EVENT_GROUPS == 1 )
|
||||||
|
|
||||||
EventBits_t MPU_xEventGroupWaitBitsEntry( const xEventGroupWaitBitsParams_t * pxParams ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
EventBits_t MPU_xEventGroupWaitBitsEntry( const xEventGroupWaitBitsParams_t * pxParams ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
||||||
|
|
||||||
EventBits_t MPU_xEventGroupWaitBitsEntry( const xEventGroupWaitBitsParams_t * pxParams ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */
|
EventBits_t MPU_xEventGroupWaitBitsEntry( const xEventGroupWaitBitsParams_t * pxParams ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */
|
||||||
|
@ -1646,18 +1648,23 @@
|
||||||
" push {r0} \n"
|
" push {r0} \n"
|
||||||
" mrs r0, control \n"
|
" mrs r0, control \n"
|
||||||
" tst r0, #1 \n"
|
" tst r0, #1 \n"
|
||||||
" pop {r0} \n"
|
|
||||||
" bne MPU_xEventGroupWaitBits_Unpriv \n"
|
" bne MPU_xEventGroupWaitBits_Unpriv \n"
|
||||||
" MPU_xEventGroupWaitBits_Priv: \n"
|
" MPU_xEventGroupWaitBits_Priv: \n"
|
||||||
|
" pop {r0} \n"
|
||||||
" b MPU_xEventGroupWaitBitsImpl \n"
|
" b MPU_xEventGroupWaitBitsImpl \n"
|
||||||
" MPU_xEventGroupWaitBits_Unpriv: \n"
|
" MPU_xEventGroupWaitBits_Unpriv: \n"
|
||||||
|
" pop {r0} \n"
|
||||||
" svc %0 \n"
|
" svc %0 \n"
|
||||||
" \n"
|
" \n"
|
||||||
: : "i" ( SYSTEM_CALL_xEventGroupWaitBits ) : "memory"
|
: : "i" ( SYSTEM_CALL_xEventGroupWaitBits ) : "memory"
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endif /* #if ( configUSE_EVENT_GROUPS == 1 ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
|
#if ( configUSE_EVENT_GROUPS == 1 )
|
||||||
|
|
||||||
EventBits_t MPU_xEventGroupClearBits( EventGroupHandle_t xEventGroup,
|
EventBits_t MPU_xEventGroupClearBits( EventGroupHandle_t xEventGroup,
|
||||||
const EventBits_t uxBitsToClear ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
const EventBits_t uxBitsToClear ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
||||||
|
|
||||||
|
@ -1672,18 +1679,23 @@
|
||||||
" push {r0} \n"
|
" push {r0} \n"
|
||||||
" mrs r0, control \n"
|
" mrs r0, control \n"
|
||||||
" tst r0, #1 \n"
|
" tst r0, #1 \n"
|
||||||
" pop {r0} \n"
|
|
||||||
" bne MPU_xEventGroupClearBits_Unpriv \n"
|
" bne MPU_xEventGroupClearBits_Unpriv \n"
|
||||||
" MPU_xEventGroupClearBits_Priv: \n"
|
" MPU_xEventGroupClearBits_Priv: \n"
|
||||||
|
" pop {r0} \n"
|
||||||
" b MPU_xEventGroupClearBitsImpl \n"
|
" b MPU_xEventGroupClearBitsImpl \n"
|
||||||
" MPU_xEventGroupClearBits_Unpriv: \n"
|
" MPU_xEventGroupClearBits_Unpriv: \n"
|
||||||
|
" pop {r0} \n"
|
||||||
" svc %0 \n"
|
" svc %0 \n"
|
||||||
" \n"
|
" \n"
|
||||||
: : "i" ( SYSTEM_CALL_xEventGroupClearBits ) : "memory"
|
: : "i" ( SYSTEM_CALL_xEventGroupClearBits ) : "memory"
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endif /* #if ( configUSE_EVENT_GROUPS == 1 ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
|
#if ( configUSE_EVENT_GROUPS == 1 )
|
||||||
|
|
||||||
EventBits_t MPU_xEventGroupSetBits( EventGroupHandle_t xEventGroup,
|
EventBits_t MPU_xEventGroupSetBits( EventGroupHandle_t xEventGroup,
|
||||||
const EventBits_t uxBitsToSet ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
const EventBits_t uxBitsToSet ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
||||||
|
|
||||||
|
@ -1698,18 +1710,23 @@
|
||||||
" push {r0} \n"
|
" push {r0} \n"
|
||||||
" mrs r0, control \n"
|
" mrs r0, control \n"
|
||||||
" tst r0, #1 \n"
|
" tst r0, #1 \n"
|
||||||
" pop {r0} \n"
|
|
||||||
" bne MPU_xEventGroupSetBits_Unpriv \n"
|
" bne MPU_xEventGroupSetBits_Unpriv \n"
|
||||||
" MPU_xEventGroupSetBits_Priv: \n"
|
" MPU_xEventGroupSetBits_Priv: \n"
|
||||||
|
" pop {r0} \n"
|
||||||
" b MPU_xEventGroupSetBitsImpl \n"
|
" b MPU_xEventGroupSetBitsImpl \n"
|
||||||
" MPU_xEventGroupSetBits_Unpriv: \n"
|
" MPU_xEventGroupSetBits_Unpriv: \n"
|
||||||
|
" pop {r0} \n"
|
||||||
" svc %0 \n"
|
" svc %0 \n"
|
||||||
" \n"
|
" \n"
|
||||||
: : "i" ( SYSTEM_CALL_xEventGroupSetBits ) : "memory"
|
: : "i" ( SYSTEM_CALL_xEventGroupSetBits ) : "memory"
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endif /* #if ( configUSE_EVENT_GROUPS == 1 ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
|
#if ( configUSE_EVENT_GROUPS == 1 )
|
||||||
|
|
||||||
EventBits_t MPU_xEventGroupSync( EventGroupHandle_t xEventGroup,
|
EventBits_t MPU_xEventGroupSync( EventGroupHandle_t xEventGroup,
|
||||||
const EventBits_t uxBitsToSet,
|
const EventBits_t uxBitsToSet,
|
||||||
const EventBits_t uxBitsToWaitFor,
|
const EventBits_t uxBitsToWaitFor,
|
||||||
|
@ -1728,19 +1745,22 @@
|
||||||
" push {r0} \n"
|
" push {r0} \n"
|
||||||
" mrs r0, control \n"
|
" mrs r0, control \n"
|
||||||
" tst r0, #1 \n"
|
" tst r0, #1 \n"
|
||||||
" pop {r0} \n"
|
|
||||||
" bne MPU_xEventGroupSync_Unpriv \n"
|
" bne MPU_xEventGroupSync_Unpriv \n"
|
||||||
" MPU_xEventGroupSync_Priv: \n"
|
" MPU_xEventGroupSync_Priv: \n"
|
||||||
|
" pop {r0} \n"
|
||||||
" b MPU_xEventGroupSyncImpl \n"
|
" b MPU_xEventGroupSyncImpl \n"
|
||||||
" MPU_xEventGroupSync_Unpriv: \n"
|
" MPU_xEventGroupSync_Unpriv: \n"
|
||||||
|
" pop {r0} \n"
|
||||||
" svc %0 \n"
|
" svc %0 \n"
|
||||||
" \n"
|
" \n"
|
||||||
: : "i" ( SYSTEM_CALL_xEventGroupSync ) : "memory"
|
: : "i" ( SYSTEM_CALL_xEventGroupSync ) : "memory"
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endif /* #if ( configUSE_EVENT_GROUPS == 1 ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
#if ( configUSE_TRACE_FACILITY == 1 )
|
#if ( ( configUSE_EVENT_GROUPS == 1 ) && ( configUSE_TRACE_FACILITY == 1 ) )
|
||||||
|
|
||||||
UBaseType_t MPU_uxEventGroupGetNumber( void * xEventGroup ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
UBaseType_t MPU_uxEventGroupGetNumber( void * xEventGroup ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
||||||
|
|
||||||
|
@ -1765,10 +1785,10 @@
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
#endif /*( configUSE_TRACE_FACILITY == 1 )*/
|
#endif /* #if ( ( configUSE_EVENT_GROUPS == 1 ) && ( configUSE_TRACE_FACILITY == 1 ) ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
#if ( configUSE_TRACE_FACILITY == 1 )
|
#if ( ( configUSE_EVENT_GROUPS == 1 ) && ( configUSE_TRACE_FACILITY == 1 ) )
|
||||||
|
|
||||||
void MPU_vEventGroupSetNumber( void * xEventGroup,
|
void MPU_vEventGroupSetNumber( void * xEventGroup,
|
||||||
UBaseType_t uxEventGroupNumber ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
UBaseType_t uxEventGroupNumber ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
||||||
|
@ -1795,9 +1815,11 @@
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
#endif /*( configUSE_TRACE_FACILITY == 1 )*/
|
#endif /* #if ( ( configUSE_EVENT_GROUPS == 1 ) && ( configUSE_TRACE_FACILITY == 1 ) ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
|
#if ( configUSE_STREAM_BUFFERS == 1 )
|
||||||
|
|
||||||
size_t MPU_xStreamBufferSend( StreamBufferHandle_t xStreamBuffer,
|
size_t MPU_xStreamBufferSend( StreamBufferHandle_t xStreamBuffer,
|
||||||
const void * pvTxData,
|
const void * pvTxData,
|
||||||
size_t xDataLengthBytes,
|
size_t xDataLengthBytes,
|
||||||
|
@ -1816,18 +1838,23 @@
|
||||||
" push {r0} \n"
|
" push {r0} \n"
|
||||||
" mrs r0, control \n"
|
" mrs r0, control \n"
|
||||||
" tst r0, #1 \n"
|
" tst r0, #1 \n"
|
||||||
" pop {r0} \n"
|
|
||||||
" bne MPU_xStreamBufferSend_Unpriv \n"
|
" bne MPU_xStreamBufferSend_Unpriv \n"
|
||||||
" MPU_xStreamBufferSend_Priv: \n"
|
" MPU_xStreamBufferSend_Priv: \n"
|
||||||
|
" pop {r0} \n"
|
||||||
" b MPU_xStreamBufferSendImpl \n"
|
" b MPU_xStreamBufferSendImpl \n"
|
||||||
" MPU_xStreamBufferSend_Unpriv: \n"
|
" MPU_xStreamBufferSend_Unpriv: \n"
|
||||||
|
" pop {r0} \n"
|
||||||
" svc %0 \n"
|
" svc %0 \n"
|
||||||
" \n"
|
" \n"
|
||||||
: : "i" ( SYSTEM_CALL_xStreamBufferSend ) : "memory"
|
: : "i" ( SYSTEM_CALL_xStreamBufferSend ) : "memory"
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endif /* #if ( configUSE_STREAM_BUFFERS == 1 ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
|
#if ( configUSE_STREAM_BUFFERS == 1 )
|
||||||
|
|
||||||
size_t MPU_xStreamBufferReceive( StreamBufferHandle_t xStreamBuffer,
|
size_t MPU_xStreamBufferReceive( StreamBufferHandle_t xStreamBuffer,
|
||||||
void * pvRxData,
|
void * pvRxData,
|
||||||
size_t xBufferLengthBytes,
|
size_t xBufferLengthBytes,
|
||||||
|
@ -1846,18 +1873,23 @@
|
||||||
" push {r0} \n"
|
" push {r0} \n"
|
||||||
" mrs r0, control \n"
|
" mrs r0, control \n"
|
||||||
" tst r0, #1 \n"
|
" tst r0, #1 \n"
|
||||||
" pop {r0} \n"
|
|
||||||
" bne MPU_xStreamBufferReceive_Unpriv \n"
|
" bne MPU_xStreamBufferReceive_Unpriv \n"
|
||||||
" MPU_xStreamBufferReceive_Priv: \n"
|
" MPU_xStreamBufferReceive_Priv: \n"
|
||||||
|
" pop {r0} \n"
|
||||||
" b MPU_xStreamBufferReceiveImpl \n"
|
" b MPU_xStreamBufferReceiveImpl \n"
|
||||||
" MPU_xStreamBufferReceive_Unpriv: \n"
|
" MPU_xStreamBufferReceive_Unpriv: \n"
|
||||||
|
" pop {r0} \n"
|
||||||
" svc %0 \n"
|
" svc %0 \n"
|
||||||
" \n"
|
" \n"
|
||||||
: : "i" ( SYSTEM_CALL_xStreamBufferReceive ) : "memory"
|
: : "i" ( SYSTEM_CALL_xStreamBufferReceive ) : "memory"
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endif /* #if ( configUSE_STREAM_BUFFERS == 1 ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
|
#if ( configUSE_STREAM_BUFFERS == 1 )
|
||||||
|
|
||||||
BaseType_t MPU_xStreamBufferIsFull( StreamBufferHandle_t xStreamBuffer ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
BaseType_t MPU_xStreamBufferIsFull( StreamBufferHandle_t xStreamBuffer ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
||||||
|
|
||||||
BaseType_t MPU_xStreamBufferIsFull( StreamBufferHandle_t xStreamBuffer ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */
|
BaseType_t MPU_xStreamBufferIsFull( StreamBufferHandle_t xStreamBuffer ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */
|
||||||
|
@ -1870,18 +1902,23 @@
|
||||||
" push {r0} \n"
|
" push {r0} \n"
|
||||||
" mrs r0, control \n"
|
" mrs r0, control \n"
|
||||||
" tst r0, #1 \n"
|
" tst r0, #1 \n"
|
||||||
" pop {r0} \n"
|
|
||||||
" bne MPU_xStreamBufferIsFull_Unpriv \n"
|
" bne MPU_xStreamBufferIsFull_Unpriv \n"
|
||||||
" MPU_xStreamBufferIsFull_Priv: \n"
|
" MPU_xStreamBufferIsFull_Priv: \n"
|
||||||
|
" pop {r0} \n"
|
||||||
" b MPU_xStreamBufferIsFullImpl \n"
|
" b MPU_xStreamBufferIsFullImpl \n"
|
||||||
" MPU_xStreamBufferIsFull_Unpriv: \n"
|
" MPU_xStreamBufferIsFull_Unpriv: \n"
|
||||||
|
" pop {r0} \n"
|
||||||
" svc %0 \n"
|
" svc %0 \n"
|
||||||
" \n"
|
" \n"
|
||||||
: : "i" ( SYSTEM_CALL_xStreamBufferIsFull ) : "memory"
|
: : "i" ( SYSTEM_CALL_xStreamBufferIsFull ) : "memory"
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endif /* #if ( configUSE_STREAM_BUFFERS == 1 ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
|
#if ( configUSE_STREAM_BUFFERS == 1 )
|
||||||
|
|
||||||
BaseType_t MPU_xStreamBufferIsEmpty( StreamBufferHandle_t xStreamBuffer ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
BaseType_t MPU_xStreamBufferIsEmpty( StreamBufferHandle_t xStreamBuffer ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
||||||
|
|
||||||
BaseType_t MPU_xStreamBufferIsEmpty( StreamBufferHandle_t xStreamBuffer ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */
|
BaseType_t MPU_xStreamBufferIsEmpty( StreamBufferHandle_t xStreamBuffer ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */
|
||||||
|
@ -1894,18 +1931,23 @@
|
||||||
" push {r0} \n"
|
" push {r0} \n"
|
||||||
" mrs r0, control \n"
|
" mrs r0, control \n"
|
||||||
" tst r0, #1 \n"
|
" tst r0, #1 \n"
|
||||||
" pop {r0} \n"
|
|
||||||
" bne MPU_xStreamBufferIsEmpty_Unpriv \n"
|
" bne MPU_xStreamBufferIsEmpty_Unpriv \n"
|
||||||
" MPU_xStreamBufferIsEmpty_Priv: \n"
|
" MPU_xStreamBufferIsEmpty_Priv: \n"
|
||||||
|
" pop {r0} \n"
|
||||||
" b MPU_xStreamBufferIsEmptyImpl \n"
|
" b MPU_xStreamBufferIsEmptyImpl \n"
|
||||||
" MPU_xStreamBufferIsEmpty_Unpriv: \n"
|
" MPU_xStreamBufferIsEmpty_Unpriv: \n"
|
||||||
|
" pop {r0} \n"
|
||||||
" svc %0 \n"
|
" svc %0 \n"
|
||||||
" \n"
|
" \n"
|
||||||
: : "i" ( SYSTEM_CALL_xStreamBufferIsEmpty ) : "memory"
|
: : "i" ( SYSTEM_CALL_xStreamBufferIsEmpty ) : "memory"
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endif /* #if ( configUSE_STREAM_BUFFERS == 1 ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
|
#if ( configUSE_STREAM_BUFFERS == 1 )
|
||||||
|
|
||||||
size_t MPU_xStreamBufferSpacesAvailable( StreamBufferHandle_t xStreamBuffer ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
size_t MPU_xStreamBufferSpacesAvailable( StreamBufferHandle_t xStreamBuffer ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
||||||
|
|
||||||
size_t MPU_xStreamBufferSpacesAvailable( StreamBufferHandle_t xStreamBuffer ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */
|
size_t MPU_xStreamBufferSpacesAvailable( StreamBufferHandle_t xStreamBuffer ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */
|
||||||
|
@ -1918,18 +1960,23 @@
|
||||||
" push {r0} \n"
|
" push {r0} \n"
|
||||||
" mrs r0, control \n"
|
" mrs r0, control \n"
|
||||||
" tst r0, #1 \n"
|
" tst r0, #1 \n"
|
||||||
" pop {r0} \n"
|
|
||||||
" bne MPU_xStreamBufferSpacesAvailable_Unpriv \n"
|
" bne MPU_xStreamBufferSpacesAvailable_Unpriv \n"
|
||||||
" MPU_xStreamBufferSpacesAvailable_Priv: \n"
|
" MPU_xStreamBufferSpacesAvailable_Priv: \n"
|
||||||
|
" pop {r0} \n"
|
||||||
" b MPU_xStreamBufferSpacesAvailableImpl \n"
|
" b MPU_xStreamBufferSpacesAvailableImpl \n"
|
||||||
" MPU_xStreamBufferSpacesAvailable_Unpriv: \n"
|
" MPU_xStreamBufferSpacesAvailable_Unpriv: \n"
|
||||||
|
" pop {r0} \n"
|
||||||
" svc %0 \n"
|
" svc %0 \n"
|
||||||
" \n"
|
" \n"
|
||||||
: : "i" ( SYSTEM_CALL_xStreamBufferSpacesAvailable ) : "memory"
|
: : "i" ( SYSTEM_CALL_xStreamBufferSpacesAvailable ) : "memory"
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endif /* #if ( configUSE_STREAM_BUFFERS == 1 ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
|
#if ( configUSE_STREAM_BUFFERS == 1 )
|
||||||
|
|
||||||
size_t MPU_xStreamBufferBytesAvailable( StreamBufferHandle_t xStreamBuffer ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
size_t MPU_xStreamBufferBytesAvailable( StreamBufferHandle_t xStreamBuffer ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
||||||
|
|
||||||
size_t MPU_xStreamBufferBytesAvailable( StreamBufferHandle_t xStreamBuffer ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */
|
size_t MPU_xStreamBufferBytesAvailable( StreamBufferHandle_t xStreamBuffer ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */
|
||||||
|
@ -1942,18 +1989,23 @@
|
||||||
" push {r0} \n"
|
" push {r0} \n"
|
||||||
" mrs r0, control \n"
|
" mrs r0, control \n"
|
||||||
" tst r0, #1 \n"
|
" tst r0, #1 \n"
|
||||||
" pop {r0} \n"
|
|
||||||
" bne MPU_xStreamBufferBytesAvailable_Unpriv \n"
|
" bne MPU_xStreamBufferBytesAvailable_Unpriv \n"
|
||||||
" MPU_xStreamBufferBytesAvailable_Priv: \n"
|
" MPU_xStreamBufferBytesAvailable_Priv: \n"
|
||||||
|
" pop {r0} \n"
|
||||||
" b MPU_xStreamBufferBytesAvailableImpl \n"
|
" b MPU_xStreamBufferBytesAvailableImpl \n"
|
||||||
" MPU_xStreamBufferBytesAvailable_Unpriv: \n"
|
" MPU_xStreamBufferBytesAvailable_Unpriv: \n"
|
||||||
|
" pop {r0} \n"
|
||||||
" svc %0 \n"
|
" svc %0 \n"
|
||||||
" \n"
|
" \n"
|
||||||
: : "i" ( SYSTEM_CALL_xStreamBufferBytesAvailable ) : "memory"
|
: : "i" ( SYSTEM_CALL_xStreamBufferBytesAvailable ) : "memory"
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endif /* #if ( configUSE_STREAM_BUFFERS == 1 ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
|
#if ( configUSE_STREAM_BUFFERS == 1 )
|
||||||
|
|
||||||
BaseType_t MPU_xStreamBufferSetTriggerLevel( StreamBufferHandle_t xStreamBuffer,
|
BaseType_t MPU_xStreamBufferSetTriggerLevel( StreamBufferHandle_t xStreamBuffer,
|
||||||
size_t xTriggerLevel ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
size_t xTriggerLevel ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
||||||
|
|
||||||
|
@ -1968,18 +2020,23 @@
|
||||||
" push {r0} \n"
|
" push {r0} \n"
|
||||||
" mrs r0, control \n"
|
" mrs r0, control \n"
|
||||||
" tst r0, #1 \n"
|
" tst r0, #1 \n"
|
||||||
" pop {r0} \n"
|
|
||||||
" bne MPU_xStreamBufferSetTriggerLevel_Unpriv \n"
|
" bne MPU_xStreamBufferSetTriggerLevel_Unpriv \n"
|
||||||
" MPU_xStreamBufferSetTriggerLevel_Priv: \n"
|
" MPU_xStreamBufferSetTriggerLevel_Priv: \n"
|
||||||
|
" pop {r0} \n"
|
||||||
" b MPU_xStreamBufferSetTriggerLevelImpl \n"
|
" b MPU_xStreamBufferSetTriggerLevelImpl \n"
|
||||||
" MPU_xStreamBufferSetTriggerLevel_Unpriv: \n"
|
" MPU_xStreamBufferSetTriggerLevel_Unpriv: \n"
|
||||||
|
" pop {r0} \n"
|
||||||
" svc %0 \n"
|
" svc %0 \n"
|
||||||
" \n"
|
" \n"
|
||||||
: : "i" ( SYSTEM_CALL_xStreamBufferSetTriggerLevel ) : "memory"
|
: : "i" ( SYSTEM_CALL_xStreamBufferSetTriggerLevel ) : "memory"
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endif /* #if ( configUSE_STREAM_BUFFERS == 1 ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
|
#if ( configUSE_STREAM_BUFFERS == 1 )
|
||||||
|
|
||||||
size_t MPU_xStreamBufferNextMessageLengthBytes( StreamBufferHandle_t xStreamBuffer ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
size_t MPU_xStreamBufferNextMessageLengthBytes( StreamBufferHandle_t xStreamBuffer ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
||||||
|
|
||||||
size_t MPU_xStreamBufferNextMessageLengthBytes( StreamBufferHandle_t xStreamBuffer ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */
|
size_t MPU_xStreamBufferNextMessageLengthBytes( StreamBufferHandle_t xStreamBuffer ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */
|
||||||
|
@ -1992,16 +2049,19 @@
|
||||||
" push {r0} \n"
|
" push {r0} \n"
|
||||||
" mrs r0, control \n"
|
" mrs r0, control \n"
|
||||||
" tst r0, #1 \n"
|
" tst r0, #1 \n"
|
||||||
" pop {r0} \n"
|
|
||||||
" bne MPU_xStreamBufferNextMessageLengthBytes_Unpriv \n"
|
" bne MPU_xStreamBufferNextMessageLengthBytes_Unpriv \n"
|
||||||
" MPU_xStreamBufferNextMessageLengthBytes_Priv: \n"
|
" MPU_xStreamBufferNextMessageLengthBytes_Priv: \n"
|
||||||
|
" pop {r0} \n"
|
||||||
" b MPU_xStreamBufferNextMessageLengthBytesImpl \n"
|
" b MPU_xStreamBufferNextMessageLengthBytesImpl \n"
|
||||||
" MPU_xStreamBufferNextMessageLengthBytes_Unpriv: \n"
|
" MPU_xStreamBufferNextMessageLengthBytes_Unpriv: \n"
|
||||||
|
" pop {r0} \n"
|
||||||
" svc %0 \n"
|
" svc %0 \n"
|
||||||
" \n"
|
" \n"
|
||||||
: : "i" ( SYSTEM_CALL_xStreamBufferNextMessageLengthBytes ) : "memory"
|
: : "i" ( SYSTEM_CALL_xStreamBufferNextMessageLengthBytes ) : "memory"
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endif /* #if ( configUSE_STREAM_BUFFERS == 1 ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
#endif /* configUSE_MPU_WRAPPERS_V1 == 0 */
|
#endif /* configUSE_MPU_WRAPPERS_V1 == 0 */
|
||||||
|
|
|
@ -1634,6 +1634,8 @@
|
||||||
#endif /* if ( configUSE_TIMERS == 1 ) */
|
#endif /* if ( configUSE_TIMERS == 1 ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
|
#if ( configUSE_EVENT_GROUPS == 1 )
|
||||||
|
|
||||||
EventBits_t MPU_xEventGroupWaitBitsEntry( const xEventGroupWaitBitsParams_t * pxParams ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
EventBits_t MPU_xEventGroupWaitBitsEntry( const xEventGroupWaitBitsParams_t * pxParams ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
||||||
|
|
||||||
EventBits_t MPU_xEventGroupWaitBitsEntry( const xEventGroupWaitBitsParams_t * pxParams ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */
|
EventBits_t MPU_xEventGroupWaitBitsEntry( const xEventGroupWaitBitsParams_t * pxParams ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */
|
||||||
|
@ -1656,8 +1658,12 @@
|
||||||
: : "i" ( SYSTEM_CALL_xEventGroupWaitBits ) : "memory"
|
: : "i" ( SYSTEM_CALL_xEventGroupWaitBits ) : "memory"
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endif /* #if ( configUSE_EVENT_GROUPS == 1 ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
|
#if ( configUSE_EVENT_GROUPS == 1 )
|
||||||
|
|
||||||
EventBits_t MPU_xEventGroupClearBits( EventGroupHandle_t xEventGroup,
|
EventBits_t MPU_xEventGroupClearBits( EventGroupHandle_t xEventGroup,
|
||||||
const EventBits_t uxBitsToClear ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
const EventBits_t uxBitsToClear ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
||||||
|
|
||||||
|
@ -1682,8 +1688,12 @@
|
||||||
: : "i" ( SYSTEM_CALL_xEventGroupClearBits ) : "memory"
|
: : "i" ( SYSTEM_CALL_xEventGroupClearBits ) : "memory"
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endif /* #if ( configUSE_EVENT_GROUPS == 1 ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
|
#if ( configUSE_EVENT_GROUPS == 1 )
|
||||||
|
|
||||||
EventBits_t MPU_xEventGroupSetBits( EventGroupHandle_t xEventGroup,
|
EventBits_t MPU_xEventGroupSetBits( EventGroupHandle_t xEventGroup,
|
||||||
const EventBits_t uxBitsToSet ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
const EventBits_t uxBitsToSet ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
||||||
|
|
||||||
|
@ -1708,8 +1718,13 @@
|
||||||
: : "i" ( SYSTEM_CALL_xEventGroupSetBits ) : "memory"
|
: : "i" ( SYSTEM_CALL_xEventGroupSetBits ) : "memory"
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endif /* #if ( configUSE_EVENT_GROUPS == 1 ) */
|
||||||
|
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
|
#if ( configUSE_EVENT_GROUPS == 1 )
|
||||||
|
|
||||||
EventBits_t MPU_xEventGroupSync( EventGroupHandle_t xEventGroup,
|
EventBits_t MPU_xEventGroupSync( EventGroupHandle_t xEventGroup,
|
||||||
const EventBits_t uxBitsToSet,
|
const EventBits_t uxBitsToSet,
|
||||||
const EventBits_t uxBitsToWaitFor,
|
const EventBits_t uxBitsToWaitFor,
|
||||||
|
@ -1738,9 +1753,11 @@
|
||||||
: : "i" ( SYSTEM_CALL_xEventGroupSync ) : "memory"
|
: : "i" ( SYSTEM_CALL_xEventGroupSync ) : "memory"
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endif /* #if ( configUSE_EVENT_GROUPS == 1 ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
#if ( configUSE_TRACE_FACILITY == 1 )
|
#if ( ( configUSE_EVENT_GROUPS == 1 ) && ( configUSE_TRACE_FACILITY == 1 ) )
|
||||||
|
|
||||||
UBaseType_t MPU_uxEventGroupGetNumber( void * xEventGroup ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
UBaseType_t MPU_uxEventGroupGetNumber( void * xEventGroup ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
||||||
|
|
||||||
|
@ -1765,10 +1782,10 @@
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
#endif /*( configUSE_TRACE_FACILITY == 1 )*/
|
#endif /* #if ( ( configUSE_EVENT_GROUPS == 1 ) && ( configUSE_TRACE_FACILITY == 1 ) ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
#if ( configUSE_TRACE_FACILITY == 1 )
|
#if ( ( configUSE_EVENT_GROUPS == 1 ) && ( configUSE_TRACE_FACILITY == 1 ) )
|
||||||
|
|
||||||
void MPU_vEventGroupSetNumber( void * xEventGroup,
|
void MPU_vEventGroupSetNumber( void * xEventGroup,
|
||||||
UBaseType_t uxEventGroupNumber ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
UBaseType_t uxEventGroupNumber ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
||||||
|
@ -1795,9 +1812,11 @@
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
#endif /*( configUSE_TRACE_FACILITY == 1 )*/
|
#endif /* #if ( ( configUSE_EVENT_GROUPS == 1 ) && ( configUSE_TRACE_FACILITY == 1 ) ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
|
#if ( configUSE_STREAM_BUFFERS == 1 )
|
||||||
|
|
||||||
size_t MPU_xStreamBufferSend( StreamBufferHandle_t xStreamBuffer,
|
size_t MPU_xStreamBufferSend( StreamBufferHandle_t xStreamBuffer,
|
||||||
const void * pvTxData,
|
const void * pvTxData,
|
||||||
size_t xDataLengthBytes,
|
size_t xDataLengthBytes,
|
||||||
|
@ -1826,8 +1845,12 @@
|
||||||
: : "i" ( SYSTEM_CALL_xStreamBufferSend ) : "memory"
|
: : "i" ( SYSTEM_CALL_xStreamBufferSend ) : "memory"
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endif /* #if ( configUSE_STREAM_BUFFERS == 1 ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
|
#if ( configUSE_STREAM_BUFFERS == 1 )
|
||||||
|
|
||||||
size_t MPU_xStreamBufferReceive( StreamBufferHandle_t xStreamBuffer,
|
size_t MPU_xStreamBufferReceive( StreamBufferHandle_t xStreamBuffer,
|
||||||
void * pvRxData,
|
void * pvRxData,
|
||||||
size_t xBufferLengthBytes,
|
size_t xBufferLengthBytes,
|
||||||
|
@ -1856,8 +1879,12 @@
|
||||||
: : "i" ( SYSTEM_CALL_xStreamBufferReceive ) : "memory"
|
: : "i" ( SYSTEM_CALL_xStreamBufferReceive ) : "memory"
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endif /* #if ( configUSE_STREAM_BUFFERS == 1 ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
|
#if ( configUSE_STREAM_BUFFERS == 1 )
|
||||||
|
|
||||||
BaseType_t MPU_xStreamBufferIsFull( StreamBufferHandle_t xStreamBuffer ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
BaseType_t MPU_xStreamBufferIsFull( StreamBufferHandle_t xStreamBuffer ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
||||||
|
|
||||||
BaseType_t MPU_xStreamBufferIsFull( StreamBufferHandle_t xStreamBuffer ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */
|
BaseType_t MPU_xStreamBufferIsFull( StreamBufferHandle_t xStreamBuffer ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */
|
||||||
|
@ -1880,8 +1907,12 @@
|
||||||
: : "i" ( SYSTEM_CALL_xStreamBufferIsFull ) : "memory"
|
: : "i" ( SYSTEM_CALL_xStreamBufferIsFull ) : "memory"
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endif /* #if ( configUSE_STREAM_BUFFERS == 1 ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
|
#if ( configUSE_STREAM_BUFFERS == 1 )
|
||||||
|
|
||||||
BaseType_t MPU_xStreamBufferIsEmpty( StreamBufferHandle_t xStreamBuffer ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
BaseType_t MPU_xStreamBufferIsEmpty( StreamBufferHandle_t xStreamBuffer ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
||||||
|
|
||||||
BaseType_t MPU_xStreamBufferIsEmpty( StreamBufferHandle_t xStreamBuffer ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */
|
BaseType_t MPU_xStreamBufferIsEmpty( StreamBufferHandle_t xStreamBuffer ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */
|
||||||
|
@ -1904,8 +1935,12 @@
|
||||||
: : "i" ( SYSTEM_CALL_xStreamBufferIsEmpty ) : "memory"
|
: : "i" ( SYSTEM_CALL_xStreamBufferIsEmpty ) : "memory"
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endif /* #if ( configUSE_STREAM_BUFFERS == 1 ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
|
#if ( configUSE_STREAM_BUFFERS == 1 )
|
||||||
|
|
||||||
size_t MPU_xStreamBufferSpacesAvailable( StreamBufferHandle_t xStreamBuffer ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
size_t MPU_xStreamBufferSpacesAvailable( StreamBufferHandle_t xStreamBuffer ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
||||||
|
|
||||||
size_t MPU_xStreamBufferSpacesAvailable( StreamBufferHandle_t xStreamBuffer ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */
|
size_t MPU_xStreamBufferSpacesAvailable( StreamBufferHandle_t xStreamBuffer ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */
|
||||||
|
@ -1928,8 +1963,12 @@
|
||||||
: : "i" ( SYSTEM_CALL_xStreamBufferSpacesAvailable ) : "memory"
|
: : "i" ( SYSTEM_CALL_xStreamBufferSpacesAvailable ) : "memory"
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endif /* #if ( configUSE_STREAM_BUFFERS == 1 ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
|
#if ( configUSE_STREAM_BUFFERS == 1 )
|
||||||
|
|
||||||
size_t MPU_xStreamBufferBytesAvailable( StreamBufferHandle_t xStreamBuffer ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
size_t MPU_xStreamBufferBytesAvailable( StreamBufferHandle_t xStreamBuffer ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
||||||
|
|
||||||
size_t MPU_xStreamBufferBytesAvailable( StreamBufferHandle_t xStreamBuffer ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */
|
size_t MPU_xStreamBufferBytesAvailable( StreamBufferHandle_t xStreamBuffer ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */
|
||||||
|
@ -1952,8 +1991,12 @@
|
||||||
: : "i" ( SYSTEM_CALL_xStreamBufferBytesAvailable ) : "memory"
|
: : "i" ( SYSTEM_CALL_xStreamBufferBytesAvailable ) : "memory"
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endif /* #if ( configUSE_STREAM_BUFFERS == 1 ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
|
#if ( configUSE_STREAM_BUFFERS == 1 )
|
||||||
|
|
||||||
BaseType_t MPU_xStreamBufferSetTriggerLevel( StreamBufferHandle_t xStreamBuffer,
|
BaseType_t MPU_xStreamBufferSetTriggerLevel( StreamBufferHandle_t xStreamBuffer,
|
||||||
size_t xTriggerLevel ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
size_t xTriggerLevel ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
||||||
|
|
||||||
|
@ -1978,8 +2021,12 @@
|
||||||
: : "i" ( SYSTEM_CALL_xStreamBufferSetTriggerLevel ) : "memory"
|
: : "i" ( SYSTEM_CALL_xStreamBufferSetTriggerLevel ) : "memory"
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endif /* #if ( configUSE_STREAM_BUFFERS == 1 ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
|
#if ( configUSE_STREAM_BUFFERS == 1 )
|
||||||
|
|
||||||
size_t MPU_xStreamBufferNextMessageLengthBytes( StreamBufferHandle_t xStreamBuffer ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
size_t MPU_xStreamBufferNextMessageLengthBytes( StreamBufferHandle_t xStreamBuffer ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
||||||
|
|
||||||
size_t MPU_xStreamBufferNextMessageLengthBytes( StreamBufferHandle_t xStreamBuffer ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */
|
size_t MPU_xStreamBufferNextMessageLengthBytes( StreamBufferHandle_t xStreamBuffer ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */
|
||||||
|
@ -2002,6 +2049,8 @@
|
||||||
: : "i" ( SYSTEM_CALL_xStreamBufferNextMessageLengthBytes ) : "memory"
|
: : "i" ( SYSTEM_CALL_xStreamBufferNextMessageLengthBytes ) : "memory"
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endif /* #if ( configUSE_STREAM_BUFFERS == 1 ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
#endif /* ( configENABLE_MPU == 1 ) && ( configUSE_MPU_WRAPPERS_V1 == 0 ) */
|
#endif /* ( configENABLE_MPU == 1 ) && ( configUSE_MPU_WRAPPERS_V1 == 0 ) */
|
||||||
|
|
|
@ -1634,6 +1634,8 @@
|
||||||
#endif /* if ( configUSE_TIMERS == 1 ) */
|
#endif /* if ( configUSE_TIMERS == 1 ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
|
#if ( configUSE_EVENT_GROUPS == 1 )
|
||||||
|
|
||||||
EventBits_t MPU_xEventGroupWaitBitsEntry( const xEventGroupWaitBitsParams_t * pxParams ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
EventBits_t MPU_xEventGroupWaitBitsEntry( const xEventGroupWaitBitsParams_t * pxParams ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
||||||
|
|
||||||
EventBits_t MPU_xEventGroupWaitBitsEntry( const xEventGroupWaitBitsParams_t * pxParams ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */
|
EventBits_t MPU_xEventGroupWaitBitsEntry( const xEventGroupWaitBitsParams_t * pxParams ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */
|
||||||
|
@ -1656,8 +1658,12 @@
|
||||||
: : "i" ( SYSTEM_CALL_xEventGroupWaitBits ) : "memory"
|
: : "i" ( SYSTEM_CALL_xEventGroupWaitBits ) : "memory"
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endif /* #if ( configUSE_EVENT_GROUPS == 1 ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
|
#if ( configUSE_EVENT_GROUPS == 1 )
|
||||||
|
|
||||||
EventBits_t MPU_xEventGroupClearBits( EventGroupHandle_t xEventGroup,
|
EventBits_t MPU_xEventGroupClearBits( EventGroupHandle_t xEventGroup,
|
||||||
const EventBits_t uxBitsToClear ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
const EventBits_t uxBitsToClear ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
||||||
|
|
||||||
|
@ -1682,8 +1688,12 @@
|
||||||
: : "i" ( SYSTEM_CALL_xEventGroupClearBits ) : "memory"
|
: : "i" ( SYSTEM_CALL_xEventGroupClearBits ) : "memory"
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endif /* #if ( configUSE_EVENT_GROUPS == 1 ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
|
#if ( configUSE_EVENT_GROUPS == 1 )
|
||||||
|
|
||||||
EventBits_t MPU_xEventGroupSetBits( EventGroupHandle_t xEventGroup,
|
EventBits_t MPU_xEventGroupSetBits( EventGroupHandle_t xEventGroup,
|
||||||
const EventBits_t uxBitsToSet ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
const EventBits_t uxBitsToSet ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
||||||
|
|
||||||
|
@ -1708,8 +1718,12 @@
|
||||||
: : "i" ( SYSTEM_CALL_xEventGroupSetBits ) : "memory"
|
: : "i" ( SYSTEM_CALL_xEventGroupSetBits ) : "memory"
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endif /* #if ( configUSE_EVENT_GROUPS == 1 ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
|
#if ( configUSE_EVENT_GROUPS == 1 )
|
||||||
|
|
||||||
EventBits_t MPU_xEventGroupSync( EventGroupHandle_t xEventGroup,
|
EventBits_t MPU_xEventGroupSync( EventGroupHandle_t xEventGroup,
|
||||||
const EventBits_t uxBitsToSet,
|
const EventBits_t uxBitsToSet,
|
||||||
const EventBits_t uxBitsToWaitFor,
|
const EventBits_t uxBitsToWaitFor,
|
||||||
|
@ -1738,9 +1752,11 @@
|
||||||
: : "i" ( SYSTEM_CALL_xEventGroupSync ) : "memory"
|
: : "i" ( SYSTEM_CALL_xEventGroupSync ) : "memory"
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endif /* #if ( configUSE_EVENT_GROUPS == 1 ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
#if ( configUSE_TRACE_FACILITY == 1 )
|
#if ( ( configUSE_EVENT_GROUPS == 1 ) && ( configUSE_TRACE_FACILITY == 1 ) )
|
||||||
|
|
||||||
UBaseType_t MPU_uxEventGroupGetNumber( void * xEventGroup ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
UBaseType_t MPU_uxEventGroupGetNumber( void * xEventGroup ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
||||||
|
|
||||||
|
@ -1765,10 +1781,10 @@
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
#endif /*( configUSE_TRACE_FACILITY == 1 )*/
|
#endif /* #if ( ( configUSE_EVENT_GROUPS == 1 ) && ( configUSE_TRACE_FACILITY == 1 ) ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
#if ( configUSE_TRACE_FACILITY == 1 )
|
#if ( ( configUSE_EVENT_GROUPS == 1 ) && ( configUSE_TRACE_FACILITY == 1 ) )
|
||||||
|
|
||||||
void MPU_vEventGroupSetNumber( void * xEventGroup,
|
void MPU_vEventGroupSetNumber( void * xEventGroup,
|
||||||
UBaseType_t uxEventGroupNumber ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
UBaseType_t uxEventGroupNumber ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
||||||
|
@ -1795,9 +1811,11 @@
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
#endif /*( configUSE_TRACE_FACILITY == 1 )*/
|
#endif /* #if ( ( configUSE_EVENT_GROUPS == 1 ) && ( configUSE_TRACE_FACILITY == 1 ) ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
|
#if ( configUSE_STREAM_BUFFERS == 1 )
|
||||||
|
|
||||||
size_t MPU_xStreamBufferSend( StreamBufferHandle_t xStreamBuffer,
|
size_t MPU_xStreamBufferSend( StreamBufferHandle_t xStreamBuffer,
|
||||||
const void * pvTxData,
|
const void * pvTxData,
|
||||||
size_t xDataLengthBytes,
|
size_t xDataLengthBytes,
|
||||||
|
@ -1826,8 +1844,12 @@
|
||||||
: : "i" ( SYSTEM_CALL_xStreamBufferSend ) : "memory"
|
: : "i" ( SYSTEM_CALL_xStreamBufferSend ) : "memory"
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endif /* #if ( configUSE_STREAM_BUFFERS == 1 ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
|
#if ( configUSE_STREAM_BUFFERS == 1 )
|
||||||
|
|
||||||
size_t MPU_xStreamBufferReceive( StreamBufferHandle_t xStreamBuffer,
|
size_t MPU_xStreamBufferReceive( StreamBufferHandle_t xStreamBuffer,
|
||||||
void * pvRxData,
|
void * pvRxData,
|
||||||
size_t xBufferLengthBytes,
|
size_t xBufferLengthBytes,
|
||||||
|
@ -1856,8 +1878,12 @@
|
||||||
: : "i" ( SYSTEM_CALL_xStreamBufferReceive ) : "memory"
|
: : "i" ( SYSTEM_CALL_xStreamBufferReceive ) : "memory"
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endif /* #if ( configUSE_STREAM_BUFFERS == 1 ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
|
#if ( configUSE_STREAM_BUFFERS == 1 )
|
||||||
|
|
||||||
BaseType_t MPU_xStreamBufferIsFull( StreamBufferHandle_t xStreamBuffer ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
BaseType_t MPU_xStreamBufferIsFull( StreamBufferHandle_t xStreamBuffer ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
||||||
|
|
||||||
BaseType_t MPU_xStreamBufferIsFull( StreamBufferHandle_t xStreamBuffer ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */
|
BaseType_t MPU_xStreamBufferIsFull( StreamBufferHandle_t xStreamBuffer ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */
|
||||||
|
@ -1880,8 +1906,12 @@
|
||||||
: : "i" ( SYSTEM_CALL_xStreamBufferIsFull ) : "memory"
|
: : "i" ( SYSTEM_CALL_xStreamBufferIsFull ) : "memory"
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endif /* #if ( configUSE_STREAM_BUFFERS == 1 ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
|
#if ( configUSE_STREAM_BUFFERS == 1 )
|
||||||
|
|
||||||
BaseType_t MPU_xStreamBufferIsEmpty( StreamBufferHandle_t xStreamBuffer ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
BaseType_t MPU_xStreamBufferIsEmpty( StreamBufferHandle_t xStreamBuffer ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
||||||
|
|
||||||
BaseType_t MPU_xStreamBufferIsEmpty( StreamBufferHandle_t xStreamBuffer ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */
|
BaseType_t MPU_xStreamBufferIsEmpty( StreamBufferHandle_t xStreamBuffer ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */
|
||||||
|
@ -1904,8 +1934,12 @@
|
||||||
: : "i" ( SYSTEM_CALL_xStreamBufferIsEmpty ) : "memory"
|
: : "i" ( SYSTEM_CALL_xStreamBufferIsEmpty ) : "memory"
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endif /* #if ( configUSE_STREAM_BUFFERS == 1 ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
|
#if ( configUSE_STREAM_BUFFERS == 1 )
|
||||||
|
|
||||||
size_t MPU_xStreamBufferSpacesAvailable( StreamBufferHandle_t xStreamBuffer ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
size_t MPU_xStreamBufferSpacesAvailable( StreamBufferHandle_t xStreamBuffer ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
||||||
|
|
||||||
size_t MPU_xStreamBufferSpacesAvailable( StreamBufferHandle_t xStreamBuffer ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */
|
size_t MPU_xStreamBufferSpacesAvailable( StreamBufferHandle_t xStreamBuffer ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */
|
||||||
|
@ -1928,8 +1962,12 @@
|
||||||
: : "i" ( SYSTEM_CALL_xStreamBufferSpacesAvailable ) : "memory"
|
: : "i" ( SYSTEM_CALL_xStreamBufferSpacesAvailable ) : "memory"
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endif /* #if ( configUSE_STREAM_BUFFERS == 1 ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
|
#if ( configUSE_STREAM_BUFFERS == 1 )
|
||||||
|
|
||||||
size_t MPU_xStreamBufferBytesAvailable( StreamBufferHandle_t xStreamBuffer ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
size_t MPU_xStreamBufferBytesAvailable( StreamBufferHandle_t xStreamBuffer ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
||||||
|
|
||||||
size_t MPU_xStreamBufferBytesAvailable( StreamBufferHandle_t xStreamBuffer ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */
|
size_t MPU_xStreamBufferBytesAvailable( StreamBufferHandle_t xStreamBuffer ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */
|
||||||
|
@ -1952,8 +1990,12 @@
|
||||||
: : "i" ( SYSTEM_CALL_xStreamBufferBytesAvailable ) : "memory"
|
: : "i" ( SYSTEM_CALL_xStreamBufferBytesAvailable ) : "memory"
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endif /* #if ( configUSE_STREAM_BUFFERS == 1 ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
|
#if ( configUSE_STREAM_BUFFERS == 1 )
|
||||||
|
|
||||||
BaseType_t MPU_xStreamBufferSetTriggerLevel( StreamBufferHandle_t xStreamBuffer,
|
BaseType_t MPU_xStreamBufferSetTriggerLevel( StreamBufferHandle_t xStreamBuffer,
|
||||||
size_t xTriggerLevel ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
size_t xTriggerLevel ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
||||||
|
|
||||||
|
@ -1978,8 +2020,12 @@
|
||||||
: : "i" ( SYSTEM_CALL_xStreamBufferSetTriggerLevel ) : "memory"
|
: : "i" ( SYSTEM_CALL_xStreamBufferSetTriggerLevel ) : "memory"
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endif /* #if ( configUSE_STREAM_BUFFERS == 1 ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
|
#if ( configUSE_STREAM_BUFFERS == 1 )
|
||||||
|
|
||||||
size_t MPU_xStreamBufferNextMessageLengthBytes( StreamBufferHandle_t xStreamBuffer ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
size_t MPU_xStreamBufferNextMessageLengthBytes( StreamBufferHandle_t xStreamBuffer ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
||||||
|
|
||||||
size_t MPU_xStreamBufferNextMessageLengthBytes( StreamBufferHandle_t xStreamBuffer ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */
|
size_t MPU_xStreamBufferNextMessageLengthBytes( StreamBufferHandle_t xStreamBuffer ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */
|
||||||
|
@ -2002,6 +2048,8 @@
|
||||||
: : "i" ( SYSTEM_CALL_xStreamBufferNextMessageLengthBytes ) : "memory"
|
: : "i" ( SYSTEM_CALL_xStreamBufferNextMessageLengthBytes ) : "memory"
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endif /* #if ( configUSE_STREAM_BUFFERS == 1 ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
#endif /* ( configENABLE_MPU == 1 ) && ( configUSE_MPU_WRAPPERS_V1 == 0 ) */
|
#endif /* ( configENABLE_MPU == 1 ) && ( configUSE_MPU_WRAPPERS_V1 == 0 ) */
|
||||||
|
|
|
@ -1634,6 +1634,8 @@
|
||||||
#endif /* if ( configUSE_TIMERS == 1 ) */
|
#endif /* if ( configUSE_TIMERS == 1 ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
|
#if ( configUSE_EVENT_GROUPS == 1 )
|
||||||
|
|
||||||
EventBits_t MPU_xEventGroupWaitBitsEntry( const xEventGroupWaitBitsParams_t * pxParams ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
EventBits_t MPU_xEventGroupWaitBitsEntry( const xEventGroupWaitBitsParams_t * pxParams ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
||||||
|
|
||||||
EventBits_t MPU_xEventGroupWaitBitsEntry( const xEventGroupWaitBitsParams_t * pxParams ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */
|
EventBits_t MPU_xEventGroupWaitBitsEntry( const xEventGroupWaitBitsParams_t * pxParams ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */
|
||||||
|
@ -1656,8 +1658,12 @@
|
||||||
: : "i" ( SYSTEM_CALL_xEventGroupWaitBits ) : "memory"
|
: : "i" ( SYSTEM_CALL_xEventGroupWaitBits ) : "memory"
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endif /* #if ( configUSE_EVENT_GROUPS == 1 ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
|
#if ( configUSE_EVENT_GROUPS == 1 )
|
||||||
|
|
||||||
EventBits_t MPU_xEventGroupClearBits( EventGroupHandle_t xEventGroup,
|
EventBits_t MPU_xEventGroupClearBits( EventGroupHandle_t xEventGroup,
|
||||||
const EventBits_t uxBitsToClear ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
const EventBits_t uxBitsToClear ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
||||||
|
|
||||||
|
@ -1682,8 +1688,12 @@
|
||||||
: : "i" ( SYSTEM_CALL_xEventGroupClearBits ) : "memory"
|
: : "i" ( SYSTEM_CALL_xEventGroupClearBits ) : "memory"
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endif /* #if ( configUSE_EVENT_GROUPS == 1 ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
|
#if ( configUSE_EVENT_GROUPS == 1 )
|
||||||
|
|
||||||
EventBits_t MPU_xEventGroupSetBits( EventGroupHandle_t xEventGroup,
|
EventBits_t MPU_xEventGroupSetBits( EventGroupHandle_t xEventGroup,
|
||||||
const EventBits_t uxBitsToSet ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
const EventBits_t uxBitsToSet ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
||||||
|
|
||||||
|
@ -1708,8 +1718,13 @@
|
||||||
: : "i" ( SYSTEM_CALL_xEventGroupSetBits ) : "memory"
|
: : "i" ( SYSTEM_CALL_xEventGroupSetBits ) : "memory"
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endif /* #if ( configUSE_EVENT_GROUPS == 1 ) */
|
||||||
|
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
|
#if ( configUSE_EVENT_GROUPS == 1 )
|
||||||
|
|
||||||
EventBits_t MPU_xEventGroupSync( EventGroupHandle_t xEventGroup,
|
EventBits_t MPU_xEventGroupSync( EventGroupHandle_t xEventGroup,
|
||||||
const EventBits_t uxBitsToSet,
|
const EventBits_t uxBitsToSet,
|
||||||
const EventBits_t uxBitsToWaitFor,
|
const EventBits_t uxBitsToWaitFor,
|
||||||
|
@ -1738,9 +1753,11 @@
|
||||||
: : "i" ( SYSTEM_CALL_xEventGroupSync ) : "memory"
|
: : "i" ( SYSTEM_CALL_xEventGroupSync ) : "memory"
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endif /* #if ( configUSE_EVENT_GROUPS == 1 ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
#if ( configUSE_TRACE_FACILITY == 1 )
|
#if ( ( configUSE_EVENT_GROUPS == 1 ) && ( configUSE_TRACE_FACILITY == 1 ) )
|
||||||
|
|
||||||
UBaseType_t MPU_uxEventGroupGetNumber( void * xEventGroup ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
UBaseType_t MPU_uxEventGroupGetNumber( void * xEventGroup ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
||||||
|
|
||||||
|
@ -1765,10 +1782,10 @@
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
#endif /*( configUSE_TRACE_FACILITY == 1 )*/
|
#endif /* #if ( ( configUSE_EVENT_GROUPS == 1 ) && ( configUSE_TRACE_FACILITY == 1 ) ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
#if ( configUSE_TRACE_FACILITY == 1 )
|
#if ( ( configUSE_EVENT_GROUPS == 1 ) && ( configUSE_TRACE_FACILITY == 1 ) )
|
||||||
|
|
||||||
void MPU_vEventGroupSetNumber( void * xEventGroup,
|
void MPU_vEventGroupSetNumber( void * xEventGroup,
|
||||||
UBaseType_t uxEventGroupNumber ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
UBaseType_t uxEventGroupNumber ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
||||||
|
@ -1795,9 +1812,11 @@
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
#endif /*( configUSE_TRACE_FACILITY == 1 )*/
|
#endif /* #if ( ( configUSE_EVENT_GROUPS == 1 ) && ( configUSE_TRACE_FACILITY == 1 ) ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
|
#if ( configUSE_STREAM_BUFFERS == 1 )
|
||||||
|
|
||||||
size_t MPU_xStreamBufferSend( StreamBufferHandle_t xStreamBuffer,
|
size_t MPU_xStreamBufferSend( StreamBufferHandle_t xStreamBuffer,
|
||||||
const void * pvTxData,
|
const void * pvTxData,
|
||||||
size_t xDataLengthBytes,
|
size_t xDataLengthBytes,
|
||||||
|
@ -1826,8 +1845,12 @@
|
||||||
: : "i" ( SYSTEM_CALL_xStreamBufferSend ) : "memory"
|
: : "i" ( SYSTEM_CALL_xStreamBufferSend ) : "memory"
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endif /* #if ( configUSE_STREAM_BUFFERS == 1 ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
|
#if ( configUSE_STREAM_BUFFERS == 1 )
|
||||||
|
|
||||||
size_t MPU_xStreamBufferReceive( StreamBufferHandle_t xStreamBuffer,
|
size_t MPU_xStreamBufferReceive( StreamBufferHandle_t xStreamBuffer,
|
||||||
void * pvRxData,
|
void * pvRxData,
|
||||||
size_t xBufferLengthBytes,
|
size_t xBufferLengthBytes,
|
||||||
|
@ -1856,8 +1879,12 @@
|
||||||
: : "i" ( SYSTEM_CALL_xStreamBufferReceive ) : "memory"
|
: : "i" ( SYSTEM_CALL_xStreamBufferReceive ) : "memory"
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endif /* #if ( configUSE_STREAM_BUFFERS == 1 ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
|
#if ( configUSE_STREAM_BUFFERS == 1 )
|
||||||
|
|
||||||
BaseType_t MPU_xStreamBufferIsFull( StreamBufferHandle_t xStreamBuffer ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
BaseType_t MPU_xStreamBufferIsFull( StreamBufferHandle_t xStreamBuffer ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
||||||
|
|
||||||
BaseType_t MPU_xStreamBufferIsFull( StreamBufferHandle_t xStreamBuffer ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */
|
BaseType_t MPU_xStreamBufferIsFull( StreamBufferHandle_t xStreamBuffer ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */
|
||||||
|
@ -1880,8 +1907,12 @@
|
||||||
: : "i" ( SYSTEM_CALL_xStreamBufferIsFull ) : "memory"
|
: : "i" ( SYSTEM_CALL_xStreamBufferIsFull ) : "memory"
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endif /* #if ( configUSE_STREAM_BUFFERS == 1 ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
|
#if ( configUSE_STREAM_BUFFERS == 1 )
|
||||||
|
|
||||||
BaseType_t MPU_xStreamBufferIsEmpty( StreamBufferHandle_t xStreamBuffer ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
BaseType_t MPU_xStreamBufferIsEmpty( StreamBufferHandle_t xStreamBuffer ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
||||||
|
|
||||||
BaseType_t MPU_xStreamBufferIsEmpty( StreamBufferHandle_t xStreamBuffer ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */
|
BaseType_t MPU_xStreamBufferIsEmpty( StreamBufferHandle_t xStreamBuffer ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */
|
||||||
|
@ -1904,8 +1935,12 @@
|
||||||
: : "i" ( SYSTEM_CALL_xStreamBufferIsEmpty ) : "memory"
|
: : "i" ( SYSTEM_CALL_xStreamBufferIsEmpty ) : "memory"
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endif /* #if ( configUSE_STREAM_BUFFERS == 1 ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
|
#if ( configUSE_STREAM_BUFFERS == 1 )
|
||||||
|
|
||||||
size_t MPU_xStreamBufferSpacesAvailable( StreamBufferHandle_t xStreamBuffer ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
size_t MPU_xStreamBufferSpacesAvailable( StreamBufferHandle_t xStreamBuffer ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
||||||
|
|
||||||
size_t MPU_xStreamBufferSpacesAvailable( StreamBufferHandle_t xStreamBuffer ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */
|
size_t MPU_xStreamBufferSpacesAvailable( StreamBufferHandle_t xStreamBuffer ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */
|
||||||
|
@ -1928,8 +1963,12 @@
|
||||||
: : "i" ( SYSTEM_CALL_xStreamBufferSpacesAvailable ) : "memory"
|
: : "i" ( SYSTEM_CALL_xStreamBufferSpacesAvailable ) : "memory"
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endif /* #if ( configUSE_STREAM_BUFFERS == 1 ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
|
#if ( configUSE_STREAM_BUFFERS == 1 )
|
||||||
|
|
||||||
size_t MPU_xStreamBufferBytesAvailable( StreamBufferHandle_t xStreamBuffer ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
size_t MPU_xStreamBufferBytesAvailable( StreamBufferHandle_t xStreamBuffer ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
||||||
|
|
||||||
size_t MPU_xStreamBufferBytesAvailable( StreamBufferHandle_t xStreamBuffer ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */
|
size_t MPU_xStreamBufferBytesAvailable( StreamBufferHandle_t xStreamBuffer ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */
|
||||||
|
@ -1952,8 +1991,12 @@
|
||||||
: : "i" ( SYSTEM_CALL_xStreamBufferBytesAvailable ) : "memory"
|
: : "i" ( SYSTEM_CALL_xStreamBufferBytesAvailable ) : "memory"
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endif /* #if ( configUSE_STREAM_BUFFERS == 1 ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
|
#if ( configUSE_STREAM_BUFFERS == 1 )
|
||||||
|
|
||||||
BaseType_t MPU_xStreamBufferSetTriggerLevel( StreamBufferHandle_t xStreamBuffer,
|
BaseType_t MPU_xStreamBufferSetTriggerLevel( StreamBufferHandle_t xStreamBuffer,
|
||||||
size_t xTriggerLevel ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
size_t xTriggerLevel ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
||||||
|
|
||||||
|
@ -1978,8 +2021,12 @@
|
||||||
: : "i" ( SYSTEM_CALL_xStreamBufferSetTriggerLevel ) : "memory"
|
: : "i" ( SYSTEM_CALL_xStreamBufferSetTriggerLevel ) : "memory"
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endif /* #if ( configUSE_STREAM_BUFFERS == 1 ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
|
#if ( configUSE_STREAM_BUFFERS == 1 )
|
||||||
|
|
||||||
size_t MPU_xStreamBufferNextMessageLengthBytes( StreamBufferHandle_t xStreamBuffer ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
size_t MPU_xStreamBufferNextMessageLengthBytes( StreamBufferHandle_t xStreamBuffer ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
||||||
|
|
||||||
size_t MPU_xStreamBufferNextMessageLengthBytes( StreamBufferHandle_t xStreamBuffer ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */
|
size_t MPU_xStreamBufferNextMessageLengthBytes( StreamBufferHandle_t xStreamBuffer ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */
|
||||||
|
@ -2002,6 +2049,8 @@
|
||||||
: : "i" ( SYSTEM_CALL_xStreamBufferNextMessageLengthBytes ) : "memory"
|
: : "i" ( SYSTEM_CALL_xStreamBufferNextMessageLengthBytes ) : "memory"
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endif /* #if ( configUSE_STREAM_BUFFERS == 1 ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
#endif /* ( configENABLE_MPU == 1 ) && ( configUSE_MPU_WRAPPERS_V1 == 0 ) */
|
#endif /* ( configENABLE_MPU == 1 ) && ( configUSE_MPU_WRAPPERS_V1 == 0 ) */
|
||||||
|
|
|
@ -1634,6 +1634,8 @@
|
||||||
#endif /* if ( configUSE_TIMERS == 1 ) */
|
#endif /* if ( configUSE_TIMERS == 1 ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
|
#if ( configUSE_EVENT_GROUPS == 1 )
|
||||||
|
|
||||||
EventBits_t MPU_xEventGroupWaitBitsEntry( const xEventGroupWaitBitsParams_t * pxParams ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
EventBits_t MPU_xEventGroupWaitBitsEntry( const xEventGroupWaitBitsParams_t * pxParams ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
||||||
|
|
||||||
EventBits_t MPU_xEventGroupWaitBitsEntry( const xEventGroupWaitBitsParams_t * pxParams ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */
|
EventBits_t MPU_xEventGroupWaitBitsEntry( const xEventGroupWaitBitsParams_t * pxParams ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */
|
||||||
|
@ -1656,8 +1658,12 @@
|
||||||
: : "i" ( SYSTEM_CALL_xEventGroupWaitBits ) : "memory"
|
: : "i" ( SYSTEM_CALL_xEventGroupWaitBits ) : "memory"
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endif /* #if ( configUSE_EVENT_GROUPS == 1 ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
|
#if ( configUSE_EVENT_GROUPS == 1 )
|
||||||
|
|
||||||
EventBits_t MPU_xEventGroupClearBits( EventGroupHandle_t xEventGroup,
|
EventBits_t MPU_xEventGroupClearBits( EventGroupHandle_t xEventGroup,
|
||||||
const EventBits_t uxBitsToClear ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
const EventBits_t uxBitsToClear ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
||||||
|
|
||||||
|
@ -1682,8 +1688,12 @@
|
||||||
: : "i" ( SYSTEM_CALL_xEventGroupClearBits ) : "memory"
|
: : "i" ( SYSTEM_CALL_xEventGroupClearBits ) : "memory"
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endif /* #if ( configUSE_EVENT_GROUPS == 1 ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
|
#if ( configUSE_EVENT_GROUPS == 1 )
|
||||||
|
|
||||||
EventBits_t MPU_xEventGroupSetBits( EventGroupHandle_t xEventGroup,
|
EventBits_t MPU_xEventGroupSetBits( EventGroupHandle_t xEventGroup,
|
||||||
const EventBits_t uxBitsToSet ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
const EventBits_t uxBitsToSet ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
||||||
|
|
||||||
|
@ -1708,8 +1718,12 @@
|
||||||
: : "i" ( SYSTEM_CALL_xEventGroupSetBits ) : "memory"
|
: : "i" ( SYSTEM_CALL_xEventGroupSetBits ) : "memory"
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endif /* #if ( configUSE_EVENT_GROUPS == 1 ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
|
#if ( configUSE_EVENT_GROUPS == 1 )
|
||||||
|
|
||||||
EventBits_t MPU_xEventGroupSync( EventGroupHandle_t xEventGroup,
|
EventBits_t MPU_xEventGroupSync( EventGroupHandle_t xEventGroup,
|
||||||
const EventBits_t uxBitsToSet,
|
const EventBits_t uxBitsToSet,
|
||||||
const EventBits_t uxBitsToWaitFor,
|
const EventBits_t uxBitsToWaitFor,
|
||||||
|
@ -1738,9 +1752,11 @@
|
||||||
: : "i" ( SYSTEM_CALL_xEventGroupSync ) : "memory"
|
: : "i" ( SYSTEM_CALL_xEventGroupSync ) : "memory"
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endif /* #if ( configUSE_EVENT_GROUPS == 1 ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
#if ( configUSE_TRACE_FACILITY == 1 )
|
#if ( ( configUSE_EVENT_GROUPS == 1 ) && ( configUSE_TRACE_FACILITY == 1 ) )
|
||||||
|
|
||||||
UBaseType_t MPU_uxEventGroupGetNumber( void * xEventGroup ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
UBaseType_t MPU_uxEventGroupGetNumber( void * xEventGroup ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
||||||
|
|
||||||
|
@ -1765,10 +1781,10 @@
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
#endif /*( configUSE_TRACE_FACILITY == 1 )*/
|
#endif /* #if ( ( configUSE_EVENT_GROUPS == 1 ) && ( configUSE_TRACE_FACILITY == 1 ) ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
#if ( configUSE_TRACE_FACILITY == 1 )
|
#if ( ( configUSE_EVENT_GROUPS == 1 ) && ( configUSE_TRACE_FACILITY == 1 ) )
|
||||||
|
|
||||||
void MPU_vEventGroupSetNumber( void * xEventGroup,
|
void MPU_vEventGroupSetNumber( void * xEventGroup,
|
||||||
UBaseType_t uxEventGroupNumber ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
UBaseType_t uxEventGroupNumber ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
||||||
|
@ -1795,9 +1811,11 @@
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
#endif /*( configUSE_TRACE_FACILITY == 1 )*/
|
#endif /* #if ( ( configUSE_EVENT_GROUPS == 1 ) && ( configUSE_TRACE_FACILITY == 1 ) ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
|
#if ( configUSE_STREAM_BUFFERS == 1 )
|
||||||
|
|
||||||
size_t MPU_xStreamBufferSend( StreamBufferHandle_t xStreamBuffer,
|
size_t MPU_xStreamBufferSend( StreamBufferHandle_t xStreamBuffer,
|
||||||
const void * pvTxData,
|
const void * pvTxData,
|
||||||
size_t xDataLengthBytes,
|
size_t xDataLengthBytes,
|
||||||
|
@ -1826,8 +1844,12 @@
|
||||||
: : "i" ( SYSTEM_CALL_xStreamBufferSend ) : "memory"
|
: : "i" ( SYSTEM_CALL_xStreamBufferSend ) : "memory"
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endif /* #if ( configUSE_STREAM_BUFFERS == 1 ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
|
#if ( configUSE_STREAM_BUFFERS == 1 )
|
||||||
|
|
||||||
size_t MPU_xStreamBufferReceive( StreamBufferHandle_t xStreamBuffer,
|
size_t MPU_xStreamBufferReceive( StreamBufferHandle_t xStreamBuffer,
|
||||||
void * pvRxData,
|
void * pvRxData,
|
||||||
size_t xBufferLengthBytes,
|
size_t xBufferLengthBytes,
|
||||||
|
@ -1856,8 +1878,12 @@
|
||||||
: : "i" ( SYSTEM_CALL_xStreamBufferReceive ) : "memory"
|
: : "i" ( SYSTEM_CALL_xStreamBufferReceive ) : "memory"
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endif /* #if ( configUSE_STREAM_BUFFERS == 1 ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
|
#if ( configUSE_STREAM_BUFFERS == 1 )
|
||||||
|
|
||||||
BaseType_t MPU_xStreamBufferIsFull( StreamBufferHandle_t xStreamBuffer ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
BaseType_t MPU_xStreamBufferIsFull( StreamBufferHandle_t xStreamBuffer ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
||||||
|
|
||||||
BaseType_t MPU_xStreamBufferIsFull( StreamBufferHandle_t xStreamBuffer ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */
|
BaseType_t MPU_xStreamBufferIsFull( StreamBufferHandle_t xStreamBuffer ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */
|
||||||
|
@ -1880,8 +1906,12 @@
|
||||||
: : "i" ( SYSTEM_CALL_xStreamBufferIsFull ) : "memory"
|
: : "i" ( SYSTEM_CALL_xStreamBufferIsFull ) : "memory"
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endif /* #if ( configUSE_STREAM_BUFFERS == 1 ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
|
#if ( configUSE_STREAM_BUFFERS == 1 )
|
||||||
|
|
||||||
BaseType_t MPU_xStreamBufferIsEmpty( StreamBufferHandle_t xStreamBuffer ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
BaseType_t MPU_xStreamBufferIsEmpty( StreamBufferHandle_t xStreamBuffer ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
||||||
|
|
||||||
BaseType_t MPU_xStreamBufferIsEmpty( StreamBufferHandle_t xStreamBuffer ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */
|
BaseType_t MPU_xStreamBufferIsEmpty( StreamBufferHandle_t xStreamBuffer ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */
|
||||||
|
@ -1904,8 +1934,12 @@
|
||||||
: : "i" ( SYSTEM_CALL_xStreamBufferIsEmpty ) : "memory"
|
: : "i" ( SYSTEM_CALL_xStreamBufferIsEmpty ) : "memory"
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endif /* #if ( configUSE_STREAM_BUFFERS == 1 ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
|
#if ( configUSE_STREAM_BUFFERS == 1 )
|
||||||
|
|
||||||
size_t MPU_xStreamBufferSpacesAvailable( StreamBufferHandle_t xStreamBuffer ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
size_t MPU_xStreamBufferSpacesAvailable( StreamBufferHandle_t xStreamBuffer ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
||||||
|
|
||||||
size_t MPU_xStreamBufferSpacesAvailable( StreamBufferHandle_t xStreamBuffer ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */
|
size_t MPU_xStreamBufferSpacesAvailable( StreamBufferHandle_t xStreamBuffer ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */
|
||||||
|
@ -1928,8 +1962,12 @@
|
||||||
: : "i" ( SYSTEM_CALL_xStreamBufferSpacesAvailable ) : "memory"
|
: : "i" ( SYSTEM_CALL_xStreamBufferSpacesAvailable ) : "memory"
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endif /* #if ( configUSE_STREAM_BUFFERS == 1 ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
|
#if ( configUSE_STREAM_BUFFERS == 1 )
|
||||||
|
|
||||||
size_t MPU_xStreamBufferBytesAvailable( StreamBufferHandle_t xStreamBuffer ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
size_t MPU_xStreamBufferBytesAvailable( StreamBufferHandle_t xStreamBuffer ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
||||||
|
|
||||||
size_t MPU_xStreamBufferBytesAvailable( StreamBufferHandle_t xStreamBuffer ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */
|
size_t MPU_xStreamBufferBytesAvailable( StreamBufferHandle_t xStreamBuffer ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */
|
||||||
|
@ -1952,8 +1990,12 @@
|
||||||
: : "i" ( SYSTEM_CALL_xStreamBufferBytesAvailable ) : "memory"
|
: : "i" ( SYSTEM_CALL_xStreamBufferBytesAvailable ) : "memory"
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endif /* #if ( configUSE_STREAM_BUFFERS == 1 ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
|
#if ( configUSE_STREAM_BUFFERS == 1 )
|
||||||
|
|
||||||
BaseType_t MPU_xStreamBufferSetTriggerLevel( StreamBufferHandle_t xStreamBuffer,
|
BaseType_t MPU_xStreamBufferSetTriggerLevel( StreamBufferHandle_t xStreamBuffer,
|
||||||
size_t xTriggerLevel ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
size_t xTriggerLevel ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
||||||
|
|
||||||
|
@ -1978,8 +2020,12 @@
|
||||||
: : "i" ( SYSTEM_CALL_xStreamBufferSetTriggerLevel ) : "memory"
|
: : "i" ( SYSTEM_CALL_xStreamBufferSetTriggerLevel ) : "memory"
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endif /* #if ( configUSE_STREAM_BUFFERS == 1 ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
|
#if ( configUSE_STREAM_BUFFERS == 1 )
|
||||||
|
|
||||||
size_t MPU_xStreamBufferNextMessageLengthBytes( StreamBufferHandle_t xStreamBuffer ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
size_t MPU_xStreamBufferNextMessageLengthBytes( StreamBufferHandle_t xStreamBuffer ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
|
||||||
|
|
||||||
size_t MPU_xStreamBufferNextMessageLengthBytes( StreamBufferHandle_t xStreamBuffer ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */
|
size_t MPU_xStreamBufferNextMessageLengthBytes( StreamBufferHandle_t xStreamBuffer ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */
|
||||||
|
@ -2002,6 +2048,8 @@
|
||||||
: : "i" ( SYSTEM_CALL_xStreamBufferNextMessageLengthBytes ) : "memory"
|
: : "i" ( SYSTEM_CALL_xStreamBufferNextMessageLengthBytes ) : "memory"
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endif /* #if ( configUSE_STREAM_BUFFERS == 1 ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
#endif /* ( configENABLE_MPU == 1 ) && ( configUSE_MPU_WRAPPERS_V1 == 0 ) */
|
#endif /* ( configENABLE_MPU == 1 ) && ( configUSE_MPU_WRAPPERS_V1 == 0 ) */
|
||||||
|
|
|
@ -201,112 +201,120 @@ MPU_xQueueSemaphoreTake:
|
||||||
|
|
||||||
/* ----------------------------------------------------------------------------------- */
|
/* ----------------------------------------------------------------------------------- */
|
||||||
|
|
||||||
.extern MPU_xEventGroupWaitBitsImpl
|
#if ( configUSE_EVENT_GROUPS == 1 )
|
||||||
.align 4
|
|
||||||
.global MPU_xEventGroupWaitBitsEntry
|
.extern MPU_xEventGroupWaitBitsImpl
|
||||||
.type MPU_xEventGroupWaitBitsEntry, function
|
.align 4
|
||||||
MPU_xEventGroupWaitBitsEntry:
|
.global MPU_xEventGroupWaitBitsEntry
|
||||||
|
.type MPU_xEventGroupWaitBitsEntry, function
|
||||||
|
MPU_xEventGroupWaitBitsEntry:
|
||||||
INVOKE_SYSTEM_CALL #SYSTEM_CALL_xEventGroupWaitBits, MPU_xEventGroupWaitBitsImpl
|
INVOKE_SYSTEM_CALL #SYSTEM_CALL_xEventGroupWaitBits, MPU_xEventGroupWaitBitsImpl
|
||||||
|
|
||||||
/* ----------------------------------------------------------------------------------- */
|
/* ----------------------------------------------------------------------------------- */
|
||||||
|
|
||||||
.extern MPU_xEventGroupClearBitsImpl
|
.extern MPU_xEventGroupClearBitsImpl
|
||||||
.align 4
|
.align 4
|
||||||
.global MPU_xEventGroupClearBits
|
.global MPU_xEventGroupClearBits
|
||||||
.type MPU_xEventGroupClearBits, function
|
.type MPU_xEventGroupClearBits, function
|
||||||
MPU_xEventGroupClearBits:
|
MPU_xEventGroupClearBits:
|
||||||
INVOKE_SYSTEM_CALL #SYSTEM_CALL_xEventGroupClearBits, MPU_xEventGroupClearBitsImpl
|
INVOKE_SYSTEM_CALL #SYSTEM_CALL_xEventGroupClearBits, MPU_xEventGroupClearBitsImpl
|
||||||
|
|
||||||
/* ----------------------------------------------------------------------------------- */
|
/* ----------------------------------------------------------------------------------- */
|
||||||
|
|
||||||
.extern MPU_xEventGroupSetBitsImpl
|
.extern MPU_xEventGroupSetBitsImpl
|
||||||
.align 4
|
.align 4
|
||||||
.global MPU_xEventGroupSetBits
|
.global MPU_xEventGroupSetBits
|
||||||
.type MPU_xEventGroupSetBits, function
|
.type MPU_xEventGroupSetBits, function
|
||||||
MPU_xEventGroupSetBits:
|
MPU_xEventGroupSetBits:
|
||||||
INVOKE_SYSTEM_CALL #SYSTEM_CALL_xEventGroupSetBits, MPU_xEventGroupSetBitsImpl
|
INVOKE_SYSTEM_CALL #SYSTEM_CALL_xEventGroupSetBits, MPU_xEventGroupSetBitsImpl
|
||||||
|
|
||||||
/* ----------------------------------------------------------------------------------- */
|
/* ----------------------------------------------------------------------------------- */
|
||||||
|
|
||||||
.extern MPU_xEventGroupSyncImpl
|
.extern MPU_xEventGroupSyncImpl
|
||||||
.align 4
|
.align 4
|
||||||
.global MPU_xEventGroupSync
|
.global MPU_xEventGroupSync
|
||||||
.type MPU_xEventGroupSync, function
|
.type MPU_xEventGroupSync, function
|
||||||
MPU_xEventGroupSync:
|
MPU_xEventGroupSync:
|
||||||
INVOKE_SYSTEM_CALL #SYSTEM_CALL_xEventGroupSync, MPU_xEventGroupSyncImpl
|
INVOKE_SYSTEM_CALL #SYSTEM_CALL_xEventGroupSync, MPU_xEventGroupSyncImpl
|
||||||
|
|
||||||
|
#endif /* if ( configUSE_EVENT_GROUPS == 1 ) */
|
||||||
|
|
||||||
/* ----------------------------------------------------------------------------------- */
|
/* ----------------------------------------------------------------------------------- */
|
||||||
|
|
||||||
.extern MPU_xStreamBufferSendImpl
|
#if ( configUSE_STREAM_BUFFERS == 1 )
|
||||||
.align 4
|
|
||||||
.global MPU_xStreamBufferSend
|
.extern MPU_xStreamBufferSendImpl
|
||||||
.type MPU_xStreamBufferSend, function
|
.align 4
|
||||||
MPU_xStreamBufferSend:
|
.global MPU_xStreamBufferSend
|
||||||
|
.type MPU_xStreamBufferSend, function
|
||||||
|
MPU_xStreamBufferSend:
|
||||||
INVOKE_SYSTEM_CALL #SYSTEM_CALL_xStreamBufferSend, MPU_xStreamBufferSendImpl
|
INVOKE_SYSTEM_CALL #SYSTEM_CALL_xStreamBufferSend, MPU_xStreamBufferSendImpl
|
||||||
|
|
||||||
/* ----------------------------------------------------------------------------------- */
|
/* ----------------------------------------------------------------------------------- */
|
||||||
|
|
||||||
.extern MPU_xStreamBufferReceiveImpl
|
.extern MPU_xStreamBufferReceiveImpl
|
||||||
.align 4
|
.align 4
|
||||||
.global MPU_xStreamBufferReceive
|
.global MPU_xStreamBufferReceive
|
||||||
.type MPU_xStreamBufferReceive, function
|
.type MPU_xStreamBufferReceive, function
|
||||||
MPU_xStreamBufferReceive:
|
MPU_xStreamBufferReceive:
|
||||||
INVOKE_SYSTEM_CALL #SYSTEM_CALL_xStreamBufferReceive, MPU_xStreamBufferReceiveImpl
|
INVOKE_SYSTEM_CALL #SYSTEM_CALL_xStreamBufferReceive, MPU_xStreamBufferReceiveImpl
|
||||||
|
|
||||||
/* ----------------------------------------------------------------------------------- */
|
/* ----------------------------------------------------------------------------------- */
|
||||||
|
|
||||||
.extern MPU_xStreamBufferIsFullImpl
|
.extern MPU_xStreamBufferIsFullImpl
|
||||||
.align 4
|
.align 4
|
||||||
.global MPU_xStreamBufferIsFull
|
.global MPU_xStreamBufferIsFull
|
||||||
.type MPU_xStreamBufferIsFull, function
|
.type MPU_xStreamBufferIsFull, function
|
||||||
MPU_xStreamBufferIsFull:
|
MPU_xStreamBufferIsFull:
|
||||||
INVOKE_SYSTEM_CALL #SYSTEM_CALL_xStreamBufferIsFull, MPU_xStreamBufferIsFullImpl
|
INVOKE_SYSTEM_CALL #SYSTEM_CALL_xStreamBufferIsFull, MPU_xStreamBufferIsFullImpl
|
||||||
|
|
||||||
/* ----------------------------------------------------------------------------------- */
|
/* ----------------------------------------------------------------------------------- */
|
||||||
|
|
||||||
.extern MPU_xStreamBufferIsEmptyImpl
|
.extern MPU_xStreamBufferIsEmptyImpl
|
||||||
.align 4
|
.align 4
|
||||||
.global MPU_xStreamBufferIsEmpty
|
.global MPU_xStreamBufferIsEmpty
|
||||||
.type MPU_xStreamBufferIsEmpty, function
|
.type MPU_xStreamBufferIsEmpty, function
|
||||||
MPU_xStreamBufferIsEmpty:
|
MPU_xStreamBufferIsEmpty:
|
||||||
INVOKE_SYSTEM_CALL #SYSTEM_CALL_xStreamBufferIsEmpty, MPU_xStreamBufferIsEmptyImpl
|
INVOKE_SYSTEM_CALL #SYSTEM_CALL_xStreamBufferIsEmpty, MPU_xStreamBufferIsEmptyImpl
|
||||||
|
|
||||||
/* ----------------------------------------------------------------------------------- */
|
/* ----------------------------------------------------------------------------------- */
|
||||||
|
|
||||||
.extern MPU_xStreamBufferSpacesAvailableImpl
|
.extern MPU_xStreamBufferSpacesAvailableImpl
|
||||||
.align 4
|
.align 4
|
||||||
.global MPU_xStreamBufferSpacesAvailable
|
.global MPU_xStreamBufferSpacesAvailable
|
||||||
.type MPU_xStreamBufferSpacesAvailable, function
|
.type MPU_xStreamBufferSpacesAvailable, function
|
||||||
MPU_xStreamBufferSpacesAvailable:
|
MPU_xStreamBufferSpacesAvailable:
|
||||||
INVOKE_SYSTEM_CALL #SYSTEM_CALL_xStreamBufferSpacesAvailable, MPU_xStreamBufferSpacesAvailableImpl
|
INVOKE_SYSTEM_CALL #SYSTEM_CALL_xStreamBufferSpacesAvailable, MPU_xStreamBufferSpacesAvailableImpl
|
||||||
|
|
||||||
/* ----------------------------------------------------------------------------------- */
|
/* ----------------------------------------------------------------------------------- */
|
||||||
|
|
||||||
.extern MPU_xStreamBufferBytesAvailableImpl
|
.extern MPU_xStreamBufferBytesAvailableImpl
|
||||||
.align 4
|
.align 4
|
||||||
.global MPU_xStreamBufferBytesAvailable
|
.global MPU_xStreamBufferBytesAvailable
|
||||||
.type MPU_xStreamBufferBytesAvailable, function
|
.type MPU_xStreamBufferBytesAvailable, function
|
||||||
MPU_xStreamBufferBytesAvailable:
|
MPU_xStreamBufferBytesAvailable:
|
||||||
INVOKE_SYSTEM_CALL #SYSTEM_CALL_xStreamBufferBytesAvailable, MPU_xStreamBufferBytesAvailableImpl
|
INVOKE_SYSTEM_CALL #SYSTEM_CALL_xStreamBufferBytesAvailable, MPU_xStreamBufferBytesAvailableImpl
|
||||||
|
|
||||||
/* ----------------------------------------------------------------------------------- */
|
/* ----------------------------------------------------------------------------------- */
|
||||||
|
|
||||||
.extern MPU_xStreamBufferSetTriggerLevelImpl
|
.extern MPU_xStreamBufferSetTriggerLevelImpl
|
||||||
.align 4
|
.align 4
|
||||||
.global MPU_xStreamBufferSetTriggerLevel
|
.global MPU_xStreamBufferSetTriggerLevel
|
||||||
.type MPU_xStreamBufferSetTriggerLevel, function
|
.type MPU_xStreamBufferSetTriggerLevel, function
|
||||||
MPU_xStreamBufferSetTriggerLevel:
|
MPU_xStreamBufferSetTriggerLevel:
|
||||||
INVOKE_SYSTEM_CALL #SYSTEM_CALL_xStreamBufferSetTriggerLevel, MPU_xStreamBufferSetTriggerLevelImpl
|
INVOKE_SYSTEM_CALL #SYSTEM_CALL_xStreamBufferSetTriggerLevel, MPU_xStreamBufferSetTriggerLevelImpl
|
||||||
|
|
||||||
/* ----------------------------------------------------------------------------------- */
|
/* ----------------------------------------------------------------------------------- */
|
||||||
|
|
||||||
.extern MPU_xStreamBufferNextMessageLengthBytesImpl
|
.extern MPU_xStreamBufferNextMessageLengthBytesImpl
|
||||||
.align 4
|
.align 4
|
||||||
.global MPU_xStreamBufferNextMessageLengthBytes
|
.global MPU_xStreamBufferNextMessageLengthBytes
|
||||||
.type MPU_xStreamBufferNextMessageLengthBytes, function
|
.type MPU_xStreamBufferNextMessageLengthBytes, function
|
||||||
MPU_xStreamBufferNextMessageLengthBytes:
|
MPU_xStreamBufferNextMessageLengthBytes:
|
||||||
INVOKE_SYSTEM_CALL #SYSTEM_CALL_xStreamBufferNextMessageLengthBytes, MPU_xStreamBufferNextMessageLengthBytesImpl
|
INVOKE_SYSTEM_CALL #SYSTEM_CALL_xStreamBufferNextMessageLengthBytes, MPU_xStreamBufferNextMessageLengthBytesImpl
|
||||||
|
|
||||||
|
#endif /* if ( configUSE_STREAM_BUFFERS == 1 ) */
|
||||||
|
|
||||||
/* ----------------------------------------------------------------------------------- */
|
/* ----------------------------------------------------------------------------------- */
|
||||||
|
|
||||||
#if ( ( INCLUDE_xTaskDelayUntil == 1 ) || ( INCLUDE_vTaskDelayUntil == 1 ) )
|
#if ( ( INCLUDE_xTaskDelayUntil == 1 ) || ( INCLUDE_vTaskDelayUntil == 1 ) )
|
||||||
|
@ -392,8 +400,11 @@ MPU_xStreamBufferNextMessageLengthBytes:
|
||||||
MPU_uxTaskGetSystemState:
|
MPU_uxTaskGetSystemState:
|
||||||
INVOKE_SYSTEM_CALL #SYSTEM_CALL_uxTaskGetSystemState, MPU_uxTaskGetSystemStateImpl
|
INVOKE_SYSTEM_CALL #SYSTEM_CALL_uxTaskGetSystemState, MPU_uxTaskGetSystemStateImpl
|
||||||
|
|
||||||
/* ------------------------------------------------------------------------------- */
|
#endif /* if ( configUSE_TRACE_FACILITY == 1 ) */
|
||||||
|
|
||||||
|
/* ------------------------------------------------------------------------------- */
|
||||||
|
|
||||||
|
#if ( ( configUSE_EVENT_GROUPS == 1 ) && ( configUSE_TRACE_FACILITY == 1 ) )
|
||||||
.extern MPU_uxEventGroupGetNumberImpl
|
.extern MPU_uxEventGroupGetNumberImpl
|
||||||
.align 4
|
.align 4
|
||||||
.global MPU_uxEventGroupGetNumber
|
.global MPU_uxEventGroupGetNumber
|
||||||
|
@ -403,6 +414,8 @@ MPU_xStreamBufferNextMessageLengthBytes:
|
||||||
|
|
||||||
/* ------------------------------------------------------------------------------- */
|
/* ------------------------------------------------------------------------------- */
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
.extern MPU_vEventGroupSetNumberImpl
|
.extern MPU_vEventGroupSetNumberImpl
|
||||||
.align 4
|
.align 4
|
||||||
.global MPU_vEventGroupSetNumber
|
.global MPU_vEventGroupSetNumber
|
||||||
|
@ -412,7 +425,7 @@ MPU_xStreamBufferNextMessageLengthBytes:
|
||||||
|
|
||||||
/* ------------------------------------------------------------------------------- */
|
/* ------------------------------------------------------------------------------- */
|
||||||
|
|
||||||
#endif /* if ( configUSE_TRACE_FACILITY == 1 ) */
|
#endif /* if ( ( configUSE_EVENT_GROUPS == 1 ) && ( configUSE_TRACE_FACILITY == 1 ) ) */
|
||||||
|
|
||||||
/* ------------------------------------------------------------------------------- */
|
/* ------------------------------------------------------------------------------- */
|
||||||
|
|
||||||
|
|
|
@ -1354,6 +1354,8 @@ MPU_xTimerGetExpiryTime_Unpriv
|
||||||
#endif /* if ( configUSE_TIMERS == 1 ) */
|
#endif /* if ( configUSE_TIMERS == 1 ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
|
#if ( configUSE_EVENT_GROUPS == 1 )
|
||||||
|
|
||||||
EventBits_t MPU_xEventGroupWaitBitsEntry( const xEventGroupWaitBitsParams_t * pxParams ) FREERTOS_SYSTEM_CALL;
|
EventBits_t MPU_xEventGroupWaitBitsEntry( const xEventGroupWaitBitsParams_t * pxParams ) FREERTOS_SYSTEM_CALL;
|
||||||
|
|
||||||
__asm EventBits_t MPU_xEventGroupWaitBitsEntry( const xEventGroupWaitBitsParams_t * pxParams ) /* FREERTOS_SYSTEM_CALL */
|
__asm EventBits_t MPU_xEventGroupWaitBitsEntry( const xEventGroupWaitBitsParams_t * pxParams ) /* FREERTOS_SYSTEM_CALL */
|
||||||
|
@ -1371,8 +1373,12 @@ MPU_xEventGroupWaitBits_Priv
|
||||||
MPU_xEventGroupWaitBits_Unpriv
|
MPU_xEventGroupWaitBits_Unpriv
|
||||||
svc #SYSTEM_CALL_xEventGroupWaitBits
|
svc #SYSTEM_CALL_xEventGroupWaitBits
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endif /* #if ( configUSE_EVENT_GROUPS == 1 ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
|
#if ( configUSE_EVENT_GROUPS == 1 )
|
||||||
|
|
||||||
EventBits_t MPU_xEventGroupClearBits( EventGroupHandle_t xEventGroup,
|
EventBits_t MPU_xEventGroupClearBits( EventGroupHandle_t xEventGroup,
|
||||||
const EventBits_t uxBitsToClear ) FREERTOS_SYSTEM_CALL;
|
const EventBits_t uxBitsToClear ) FREERTOS_SYSTEM_CALL;
|
||||||
|
|
||||||
|
@ -1392,8 +1398,12 @@ MPU_xEventGroupClearBits_Priv
|
||||||
MPU_xEventGroupClearBits_Unpriv
|
MPU_xEventGroupClearBits_Unpriv
|
||||||
svc #SYSTEM_CALL_xEventGroupClearBits
|
svc #SYSTEM_CALL_xEventGroupClearBits
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endif /* #if ( configUSE_EVENT_GROUPS == 1 ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
|
#if ( configUSE_EVENT_GROUPS == 1 )
|
||||||
|
|
||||||
EventBits_t MPU_xEventGroupSetBits( EventGroupHandle_t xEventGroup,
|
EventBits_t MPU_xEventGroupSetBits( EventGroupHandle_t xEventGroup,
|
||||||
const EventBits_t uxBitsToSet ) FREERTOS_SYSTEM_CALL;
|
const EventBits_t uxBitsToSet ) FREERTOS_SYSTEM_CALL;
|
||||||
|
|
||||||
|
@ -1413,8 +1423,12 @@ MPU_xEventGroupSetBits_Priv
|
||||||
MPU_xEventGroupSetBits_Unpriv
|
MPU_xEventGroupSetBits_Unpriv
|
||||||
svc #SYSTEM_CALL_xEventGroupSetBits
|
svc #SYSTEM_CALL_xEventGroupSetBits
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endif /* #if ( configUSE_EVENT_GROUPS == 1 ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
|
#if ( configUSE_EVENT_GROUPS == 1 )
|
||||||
|
|
||||||
EventBits_t MPU_xEventGroupSync( EventGroupHandle_t xEventGroup,
|
EventBits_t MPU_xEventGroupSync( EventGroupHandle_t xEventGroup,
|
||||||
const EventBits_t uxBitsToSet,
|
const EventBits_t uxBitsToSet,
|
||||||
const EventBits_t uxBitsToWaitFor,
|
const EventBits_t uxBitsToWaitFor,
|
||||||
|
@ -1438,9 +1452,11 @@ MPU_xEventGroupSync_Priv
|
||||||
MPU_xEventGroupSync_Unpriv
|
MPU_xEventGroupSync_Unpriv
|
||||||
svc #SYSTEM_CALL_xEventGroupSync
|
svc #SYSTEM_CALL_xEventGroupSync
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endif /* #if ( configUSE_EVENT_GROUPS == 1 ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
#if ( configUSE_TRACE_FACILITY == 1 )
|
#if ( ( configUSE_EVENT_GROUPS == 1 ) && ( configUSE_TRACE_FACILITY == 1 ) )
|
||||||
|
|
||||||
UBaseType_t MPU_uxEventGroupGetNumber( void * xEventGroup ) FREERTOS_SYSTEM_CALL;
|
UBaseType_t MPU_uxEventGroupGetNumber( void * xEventGroup ) FREERTOS_SYSTEM_CALL;
|
||||||
|
|
||||||
|
@ -1460,10 +1476,10 @@ MPU_uxEventGroupGetNumber_Unpriv
|
||||||
svc #SYSTEM_CALL_uxEventGroupGetNumber
|
svc #SYSTEM_CALL_uxEventGroupGetNumber
|
||||||
}
|
}
|
||||||
|
|
||||||
#endif /*( configUSE_TRACE_FACILITY == 1 )*/
|
#endif /* #if ( ( configUSE_EVENT_GROUPS == 1 ) && ( configUSE_TRACE_FACILITY == 1 ) ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
#if ( configUSE_TRACE_FACILITY == 1 )
|
#if ( ( configUSE_EVENT_GROUPS == 1 ) && ( configUSE_TRACE_FACILITY == 1 ) )
|
||||||
|
|
||||||
void MPU_vEventGroupSetNumber( void * xEventGroup,
|
void MPU_vEventGroupSetNumber( void * xEventGroup,
|
||||||
UBaseType_t uxEventGroupNumber ) FREERTOS_SYSTEM_CALL;
|
UBaseType_t uxEventGroupNumber ) FREERTOS_SYSTEM_CALL;
|
||||||
|
@ -1485,9 +1501,11 @@ MPU_vEventGroupSetNumber_Unpriv
|
||||||
svc #SYSTEM_CALL_vEventGroupSetNumber
|
svc #SYSTEM_CALL_vEventGroupSetNumber
|
||||||
}
|
}
|
||||||
|
|
||||||
#endif /*( configUSE_TRACE_FACILITY == 1 )*/
|
#endif /* #if ( ( configUSE_EVENT_GROUPS == 1 ) && ( configUSE_TRACE_FACILITY == 1 ) ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
|
#if ( configUSE_STREAM_BUFFERS == 1 )
|
||||||
|
|
||||||
size_t MPU_xStreamBufferSend( StreamBufferHandle_t xStreamBuffer,
|
size_t MPU_xStreamBufferSend( StreamBufferHandle_t xStreamBuffer,
|
||||||
const void * pvTxData,
|
const void * pvTxData,
|
||||||
size_t xDataLengthBytes,
|
size_t xDataLengthBytes,
|
||||||
|
@ -1511,8 +1529,12 @@ MPU_xStreamBufferSend_Priv
|
||||||
MPU_xStreamBufferSend_Unpriv
|
MPU_xStreamBufferSend_Unpriv
|
||||||
svc #SYSTEM_CALL_xStreamBufferSend
|
svc #SYSTEM_CALL_xStreamBufferSend
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endif /* #if ( configUSE_STREAM_BUFFERS == 1 ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
|
#if ( configUSE_STREAM_BUFFERS == 1 )
|
||||||
|
|
||||||
size_t MPU_xStreamBufferReceive( StreamBufferHandle_t xStreamBuffer,
|
size_t MPU_xStreamBufferReceive( StreamBufferHandle_t xStreamBuffer,
|
||||||
void * pvRxData,
|
void * pvRxData,
|
||||||
size_t xBufferLengthBytes,
|
size_t xBufferLengthBytes,
|
||||||
|
@ -1536,8 +1558,12 @@ MPU_xStreamBufferReceive_Priv
|
||||||
MPU_xStreamBufferReceive_Unpriv
|
MPU_xStreamBufferReceive_Unpriv
|
||||||
svc #SYSTEM_CALL_xStreamBufferReceive
|
svc #SYSTEM_CALL_xStreamBufferReceive
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endif /* #if ( configUSE_STREAM_BUFFERS == 1 ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
|
#if ( configUSE_STREAM_BUFFERS == 1 )
|
||||||
|
|
||||||
BaseType_t MPU_xStreamBufferIsFull( StreamBufferHandle_t xStreamBuffer ) FREERTOS_SYSTEM_CALL;
|
BaseType_t MPU_xStreamBufferIsFull( StreamBufferHandle_t xStreamBuffer ) FREERTOS_SYSTEM_CALL;
|
||||||
|
|
||||||
__asm BaseType_t MPU_xStreamBufferIsFull( StreamBufferHandle_t xStreamBuffer ) /* FREERTOS_SYSTEM_CALL */
|
__asm BaseType_t MPU_xStreamBufferIsFull( StreamBufferHandle_t xStreamBuffer ) /* FREERTOS_SYSTEM_CALL */
|
||||||
|
@ -1555,8 +1581,12 @@ MPU_xStreamBufferIsFull_Priv
|
||||||
MPU_xStreamBufferIsFull_Unpriv
|
MPU_xStreamBufferIsFull_Unpriv
|
||||||
svc #SYSTEM_CALL_xStreamBufferIsFull
|
svc #SYSTEM_CALL_xStreamBufferIsFull
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endif /* #if ( configUSE_STREAM_BUFFERS == 1 ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
|
#if ( configUSE_STREAM_BUFFERS == 1 )
|
||||||
|
|
||||||
BaseType_t MPU_xStreamBufferIsEmpty( StreamBufferHandle_t xStreamBuffer ) FREERTOS_SYSTEM_CALL;
|
BaseType_t MPU_xStreamBufferIsEmpty( StreamBufferHandle_t xStreamBuffer ) FREERTOS_SYSTEM_CALL;
|
||||||
|
|
||||||
__asm BaseType_t MPU_xStreamBufferIsEmpty( StreamBufferHandle_t xStreamBuffer ) /* FREERTOS_SYSTEM_CALL */
|
__asm BaseType_t MPU_xStreamBufferIsEmpty( StreamBufferHandle_t xStreamBuffer ) /* FREERTOS_SYSTEM_CALL */
|
||||||
|
@ -1574,8 +1604,12 @@ MPU_xStreamBufferIsEmpty_Priv
|
||||||
MPU_xStreamBufferIsEmpty_Unpriv
|
MPU_xStreamBufferIsEmpty_Unpriv
|
||||||
svc #SYSTEM_CALL_xStreamBufferIsEmpty
|
svc #SYSTEM_CALL_xStreamBufferIsEmpty
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endif /* #if ( configUSE_STREAM_BUFFERS == 1 ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
|
#if ( configUSE_STREAM_BUFFERS == 1 )
|
||||||
|
|
||||||
size_t MPU_xStreamBufferSpacesAvailable( StreamBufferHandle_t xStreamBuffer ) FREERTOS_SYSTEM_CALL;
|
size_t MPU_xStreamBufferSpacesAvailable( StreamBufferHandle_t xStreamBuffer ) FREERTOS_SYSTEM_CALL;
|
||||||
|
|
||||||
__asm size_t MPU_xStreamBufferSpacesAvailable( StreamBufferHandle_t xStreamBuffer ) /* FREERTOS_SYSTEM_CALL */
|
__asm size_t MPU_xStreamBufferSpacesAvailable( StreamBufferHandle_t xStreamBuffer ) /* FREERTOS_SYSTEM_CALL */
|
||||||
|
@ -1593,8 +1627,12 @@ MPU_xStreamBufferSpacesAvailable_Priv
|
||||||
MPU_xStreamBufferSpacesAvailable_Unpriv
|
MPU_xStreamBufferSpacesAvailable_Unpriv
|
||||||
svc #SYSTEM_CALL_xStreamBufferSpacesAvailable
|
svc #SYSTEM_CALL_xStreamBufferSpacesAvailable
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endif /* #if ( configUSE_STREAM_BUFFERS == 1 ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
|
#if ( configUSE_STREAM_BUFFERS == 1 )
|
||||||
|
|
||||||
size_t MPU_xStreamBufferBytesAvailable( StreamBufferHandle_t xStreamBuffer ) FREERTOS_SYSTEM_CALL;
|
size_t MPU_xStreamBufferBytesAvailable( StreamBufferHandle_t xStreamBuffer ) FREERTOS_SYSTEM_CALL;
|
||||||
|
|
||||||
__asm size_t MPU_xStreamBufferBytesAvailable( StreamBufferHandle_t xStreamBuffer ) /* FREERTOS_SYSTEM_CALL */
|
__asm size_t MPU_xStreamBufferBytesAvailable( StreamBufferHandle_t xStreamBuffer ) /* FREERTOS_SYSTEM_CALL */
|
||||||
|
@ -1612,8 +1650,12 @@ MPU_xStreamBufferBytesAvailable_Priv
|
||||||
MPU_xStreamBufferBytesAvailable_Unpriv
|
MPU_xStreamBufferBytesAvailable_Unpriv
|
||||||
svc #SYSTEM_CALL_xStreamBufferBytesAvailable
|
svc #SYSTEM_CALL_xStreamBufferBytesAvailable
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endif /* #if ( configUSE_STREAM_BUFFERS == 1 ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
|
#if ( configUSE_STREAM_BUFFERS == 1 )
|
||||||
|
|
||||||
BaseType_t MPU_xStreamBufferSetTriggerLevel( StreamBufferHandle_t xStreamBuffer,
|
BaseType_t MPU_xStreamBufferSetTriggerLevel( StreamBufferHandle_t xStreamBuffer,
|
||||||
size_t xTriggerLevel ) FREERTOS_SYSTEM_CALL;
|
size_t xTriggerLevel ) FREERTOS_SYSTEM_CALL;
|
||||||
|
|
||||||
|
@ -1633,8 +1675,12 @@ MPU_xStreamBufferSetTriggerLevel_Priv
|
||||||
MPU_xStreamBufferSetTriggerLevel_Unpriv
|
MPU_xStreamBufferSetTriggerLevel_Unpriv
|
||||||
svc #SYSTEM_CALL_xStreamBufferSetTriggerLevel
|
svc #SYSTEM_CALL_xStreamBufferSetTriggerLevel
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endif /* #if ( configUSE_STREAM_BUFFERS == 1 ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
|
#if ( configUSE_STREAM_BUFFERS == 1 )
|
||||||
|
|
||||||
size_t MPU_xStreamBufferNextMessageLengthBytes( StreamBufferHandle_t xStreamBuffer ) FREERTOS_SYSTEM_CALL;
|
size_t MPU_xStreamBufferNextMessageLengthBytes( StreamBufferHandle_t xStreamBuffer ) FREERTOS_SYSTEM_CALL;
|
||||||
|
|
||||||
__asm size_t MPU_xStreamBufferNextMessageLengthBytes( StreamBufferHandle_t xStreamBuffer ) /* FREERTOS_SYSTEM_CALL */
|
__asm size_t MPU_xStreamBufferNextMessageLengthBytes( StreamBufferHandle_t xStreamBuffer ) /* FREERTOS_SYSTEM_CALL */
|
||||||
|
@ -1652,6 +1698,8 @@ MPU_xStreamBufferNextMessageLengthBytes_Priv
|
||||||
MPU_xStreamBufferNextMessageLengthBytes_Unpriv
|
MPU_xStreamBufferNextMessageLengthBytes_Unpriv
|
||||||
svc #SYSTEM_CALL_xStreamBufferNextMessageLengthBytes
|
svc #SYSTEM_CALL_xStreamBufferNextMessageLengthBytes
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endif /* #if ( configUSE_STREAM_BUFFERS == 1 ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
#endif /* configUSE_MPU_WRAPPERS_V1 == 0 */
|
#endif /* configUSE_MPU_WRAPPERS_V1 == 0 */
|
||||||
|
|
|
@ -52,10 +52,16 @@
|
||||||
* correct privileged Vs unprivileged linkage and placement. */
|
* correct privileged Vs unprivileged linkage and placement. */
|
||||||
#undef MPU_WRAPPERS_INCLUDED_FROM_API_FILE
|
#undef MPU_WRAPPERS_INCLUDED_FROM_API_FILE
|
||||||
|
|
||||||
|
/* This entire source file will be skipped if the application is not configured
|
||||||
|
* to include stream buffer functionality. This #if is closed at the very bottom
|
||||||
|
* of this file. If you want to include stream buffers then ensure
|
||||||
|
* configUSE_STREAM_BUFFERS is set to 1 in FreeRTOSConfig.h. */
|
||||||
|
#if ( configUSE_STREAM_BUFFERS == 1 )
|
||||||
|
|
||||||
/* If the user has not provided application specific Rx notification macros,
|
/* If the user has not provided application specific Rx notification macros,
|
||||||
* or #defined the notification macros away, then provide default implementations
|
* or #defined the notification macros away, then provide default implementations
|
||||||
* that uses task notifications. */
|
* that uses task notifications. */
|
||||||
#ifndef sbRECEIVE_COMPLETED
|
#ifndef sbRECEIVE_COMPLETED
|
||||||
#define sbRECEIVE_COMPLETED( pxStreamBuffer ) \
|
#define sbRECEIVE_COMPLETED( pxStreamBuffer ) \
|
||||||
do \
|
do \
|
||||||
{ \
|
{ \
|
||||||
|
@ -72,12 +78,12 @@
|
||||||
} \
|
} \
|
||||||
( void ) xTaskResumeAll(); \
|
( void ) xTaskResumeAll(); \
|
||||||
} while( 0 )
|
} while( 0 )
|
||||||
#endif /* sbRECEIVE_COMPLETED */
|
#endif /* sbRECEIVE_COMPLETED */
|
||||||
|
|
||||||
/* If user has provided a per-instance receive complete callback, then
|
/* If user has provided a per-instance receive complete callback, then
|
||||||
* invoke the callback else use the receive complete macro which is provided by default for all instances.
|
* invoke the callback else use the receive complete macro which is provided by default for all instances.
|
||||||
*/
|
*/
|
||||||
#if ( configUSE_SB_COMPLETED_CALLBACK == 1 )
|
#if ( configUSE_SB_COMPLETED_CALLBACK == 1 )
|
||||||
#define prvRECEIVE_COMPLETED( pxStreamBuffer ) \
|
#define prvRECEIVE_COMPLETED( pxStreamBuffer ) \
|
||||||
do { \
|
do { \
|
||||||
if( ( pxStreamBuffer )->pxReceiveCompletedCallback != NULL ) \
|
if( ( pxStreamBuffer )->pxReceiveCompletedCallback != NULL ) \
|
||||||
|
@ -89,11 +95,11 @@
|
||||||
sbRECEIVE_COMPLETED( ( pxStreamBuffer ) ); \
|
sbRECEIVE_COMPLETED( ( pxStreamBuffer ) ); \
|
||||||
} \
|
} \
|
||||||
} while( 0 )
|
} while( 0 )
|
||||||
#else /* if ( configUSE_SB_COMPLETED_CALLBACK == 1 ) */
|
#else /* if ( configUSE_SB_COMPLETED_CALLBACK == 1 ) */
|
||||||
#define prvRECEIVE_COMPLETED( pxStreamBuffer ) sbRECEIVE_COMPLETED( ( pxStreamBuffer ) )
|
#define prvRECEIVE_COMPLETED( pxStreamBuffer ) sbRECEIVE_COMPLETED( ( pxStreamBuffer ) )
|
||||||
#endif /* if ( configUSE_SB_COMPLETED_CALLBACK == 1 ) */
|
#endif /* if ( configUSE_SB_COMPLETED_CALLBACK == 1 ) */
|
||||||
|
|
||||||
#ifndef sbRECEIVE_COMPLETED_FROM_ISR
|
#ifndef sbRECEIVE_COMPLETED_FROM_ISR
|
||||||
#define sbRECEIVE_COMPLETED_FROM_ISR( pxStreamBuffer, \
|
#define sbRECEIVE_COMPLETED_FROM_ISR( pxStreamBuffer, \
|
||||||
pxHigherPriorityTaskWoken ) \
|
pxHigherPriorityTaskWoken ) \
|
||||||
do { \
|
do { \
|
||||||
|
@ -113,9 +119,9 @@
|
||||||
} \
|
} \
|
||||||
taskEXIT_CRITICAL_FROM_ISR( uxSavedInterruptStatus ); \
|
taskEXIT_CRITICAL_FROM_ISR( uxSavedInterruptStatus ); \
|
||||||
} while( 0 )
|
} while( 0 )
|
||||||
#endif /* sbRECEIVE_COMPLETED_FROM_ISR */
|
#endif /* sbRECEIVE_COMPLETED_FROM_ISR */
|
||||||
|
|
||||||
#if ( configUSE_SB_COMPLETED_CALLBACK == 1 )
|
#if ( configUSE_SB_COMPLETED_CALLBACK == 1 )
|
||||||
#define prvRECEIVE_COMPLETED_FROM_ISR( pxStreamBuffer, \
|
#define prvRECEIVE_COMPLETED_FROM_ISR( pxStreamBuffer, \
|
||||||
pxHigherPriorityTaskWoken ) \
|
pxHigherPriorityTaskWoken ) \
|
||||||
do { \
|
do { \
|
||||||
|
@ -128,16 +134,16 @@
|
||||||
sbRECEIVE_COMPLETED_FROM_ISR( ( pxStreamBuffer ), ( pxHigherPriorityTaskWoken ) ); \
|
sbRECEIVE_COMPLETED_FROM_ISR( ( pxStreamBuffer ), ( pxHigherPriorityTaskWoken ) ); \
|
||||||
} \
|
} \
|
||||||
} while( 0 )
|
} while( 0 )
|
||||||
#else /* if ( configUSE_SB_COMPLETED_CALLBACK == 1 ) */
|
#else /* if ( configUSE_SB_COMPLETED_CALLBACK == 1 ) */
|
||||||
#define prvRECEIVE_COMPLETED_FROM_ISR( pxStreamBuffer, pxHigherPriorityTaskWoken ) \
|
#define prvRECEIVE_COMPLETED_FROM_ISR( pxStreamBuffer, pxHigherPriorityTaskWoken ) \
|
||||||
sbRECEIVE_COMPLETED_FROM_ISR( ( pxStreamBuffer ), ( pxHigherPriorityTaskWoken ) )
|
sbRECEIVE_COMPLETED_FROM_ISR( ( pxStreamBuffer ), ( pxHigherPriorityTaskWoken ) )
|
||||||
#endif /* if ( configUSE_SB_COMPLETED_CALLBACK == 1 ) */
|
#endif /* if ( configUSE_SB_COMPLETED_CALLBACK == 1 ) */
|
||||||
|
|
||||||
/* If the user has not provided an application specific Tx notification macro,
|
/* If the user has not provided an application specific Tx notification macro,
|
||||||
* or #defined the notification macro away, then provide a default
|
* or #defined the notification macro away, then provide a default
|
||||||
* implementation that uses task notifications.
|
* implementation that uses task notifications.
|
||||||
*/
|
*/
|
||||||
#ifndef sbSEND_COMPLETED
|
#ifndef sbSEND_COMPLETED
|
||||||
#define sbSEND_COMPLETED( pxStreamBuffer ) \
|
#define sbSEND_COMPLETED( pxStreamBuffer ) \
|
||||||
vTaskSuspendAll(); \
|
vTaskSuspendAll(); \
|
||||||
{ \
|
{ \
|
||||||
|
@ -151,12 +157,12 @@
|
||||||
} \
|
} \
|
||||||
} \
|
} \
|
||||||
( void ) xTaskResumeAll()
|
( void ) xTaskResumeAll()
|
||||||
#endif /* sbSEND_COMPLETED */
|
#endif /* sbSEND_COMPLETED */
|
||||||
|
|
||||||
/* If user has provided a per-instance send completed callback, then
|
/* If user has provided a per-instance send completed callback, then
|
||||||
* invoke the callback else use the send complete macro which is provided by default for all instances.
|
* invoke the callback else use the send complete macro which is provided by default for all instances.
|
||||||
*/
|
*/
|
||||||
#if ( configUSE_SB_COMPLETED_CALLBACK == 1 )
|
#if ( configUSE_SB_COMPLETED_CALLBACK == 1 )
|
||||||
#define prvSEND_COMPLETED( pxStreamBuffer ) \
|
#define prvSEND_COMPLETED( pxStreamBuffer ) \
|
||||||
do { \
|
do { \
|
||||||
if( ( pxStreamBuffer )->pxSendCompletedCallback != NULL ) \
|
if( ( pxStreamBuffer )->pxSendCompletedCallback != NULL ) \
|
||||||
|
@ -168,12 +174,12 @@
|
||||||
sbSEND_COMPLETED( ( pxStreamBuffer ) ); \
|
sbSEND_COMPLETED( ( pxStreamBuffer ) ); \
|
||||||
} \
|
} \
|
||||||
} while( 0 )
|
} while( 0 )
|
||||||
#else /* if ( configUSE_SB_COMPLETED_CALLBACK == 1 ) */
|
#else /* if ( configUSE_SB_COMPLETED_CALLBACK == 1 ) */
|
||||||
#define prvSEND_COMPLETED( pxStreamBuffer ) sbSEND_COMPLETED( ( pxStreamBuffer ) )
|
#define prvSEND_COMPLETED( pxStreamBuffer ) sbSEND_COMPLETED( ( pxStreamBuffer ) )
|
||||||
#endif /* if ( configUSE_SB_COMPLETED_CALLBACK == 1 ) */
|
#endif /* if ( configUSE_SB_COMPLETED_CALLBACK == 1 ) */
|
||||||
|
|
||||||
|
|
||||||
#ifndef sbSEND_COMPLETE_FROM_ISR
|
#ifndef sbSEND_COMPLETE_FROM_ISR
|
||||||
#define sbSEND_COMPLETE_FROM_ISR( pxStreamBuffer, pxHigherPriorityTaskWoken ) \
|
#define sbSEND_COMPLETE_FROM_ISR( pxStreamBuffer, pxHigherPriorityTaskWoken ) \
|
||||||
do { \
|
do { \
|
||||||
UBaseType_t uxSavedInterruptStatus; \
|
UBaseType_t uxSavedInterruptStatus; \
|
||||||
|
@ -192,10 +198,10 @@
|
||||||
} \
|
} \
|
||||||
taskEXIT_CRITICAL_FROM_ISR( uxSavedInterruptStatus ); \
|
taskEXIT_CRITICAL_FROM_ISR( uxSavedInterruptStatus ); \
|
||||||
} while( 0 )
|
} while( 0 )
|
||||||
#endif /* sbSEND_COMPLETE_FROM_ISR */
|
#endif /* sbSEND_COMPLETE_FROM_ISR */
|
||||||
|
|
||||||
|
|
||||||
#if ( configUSE_SB_COMPLETED_CALLBACK == 1 )
|
#if ( configUSE_SB_COMPLETED_CALLBACK == 1 )
|
||||||
#define prvSEND_COMPLETE_FROM_ISR( pxStreamBuffer, pxHigherPriorityTaskWoken ) \
|
#define prvSEND_COMPLETE_FROM_ISR( pxStreamBuffer, pxHigherPriorityTaskWoken ) \
|
||||||
do { \
|
do { \
|
||||||
if( ( pxStreamBuffer )->pxSendCompletedCallback != NULL ) \
|
if( ( pxStreamBuffer )->pxSendCompletedCallback != NULL ) \
|
||||||
|
@ -207,17 +213,17 @@
|
||||||
sbSEND_COMPLETE_FROM_ISR( ( pxStreamBuffer ), ( pxHigherPriorityTaskWoken ) ); \
|
sbSEND_COMPLETE_FROM_ISR( ( pxStreamBuffer ), ( pxHigherPriorityTaskWoken ) ); \
|
||||||
} \
|
} \
|
||||||
} while( 0 )
|
} while( 0 )
|
||||||
#else /* if ( configUSE_SB_COMPLETED_CALLBACK == 1 ) */
|
#else /* if ( configUSE_SB_COMPLETED_CALLBACK == 1 ) */
|
||||||
#define prvSEND_COMPLETE_FROM_ISR( pxStreamBuffer, pxHigherPriorityTaskWoken ) \
|
#define prvSEND_COMPLETE_FROM_ISR( pxStreamBuffer, pxHigherPriorityTaskWoken ) \
|
||||||
sbSEND_COMPLETE_FROM_ISR( ( pxStreamBuffer ), ( pxHigherPriorityTaskWoken ) )
|
sbSEND_COMPLETE_FROM_ISR( ( pxStreamBuffer ), ( pxHigherPriorityTaskWoken ) )
|
||||||
#endif /* if ( configUSE_SB_COMPLETED_CALLBACK == 1 ) */
|
#endif /* if ( configUSE_SB_COMPLETED_CALLBACK == 1 ) */
|
||||||
|
|
||||||
/* The number of bytes used to hold the length of a message in the buffer. */
|
/* The number of bytes used to hold the length of a message in the buffer. */
|
||||||
#define sbBYTES_TO_STORE_MESSAGE_LENGTH ( sizeof( configMESSAGE_BUFFER_LENGTH_TYPE ) )
|
#define sbBYTES_TO_STORE_MESSAGE_LENGTH ( sizeof( configMESSAGE_BUFFER_LENGTH_TYPE ) )
|
||||||
|
|
||||||
/* Bits stored in the ucFlags field of the stream buffer. */
|
/* Bits stored in the ucFlags field of the stream buffer. */
|
||||||
#define sbFLAGS_IS_MESSAGE_BUFFER ( ( uint8_t ) 1 ) /* Set if the stream buffer was created as a message buffer, in which case it holds discrete messages rather than a stream. */
|
#define sbFLAGS_IS_MESSAGE_BUFFER ( ( uint8_t ) 1 ) /* Set if the stream buffer was created as a message buffer, in which case it holds discrete messages rather than a stream. */
|
||||||
#define sbFLAGS_IS_STATICALLY_ALLOCATED ( ( uint8_t ) 2 ) /* Set if the stream buffer was created using statically allocated memory. */
|
#define sbFLAGS_IS_STATICALLY_ALLOCATED ( ( uint8_t ) 2 ) /* Set if the stream buffer was created using statically allocated memory. */
|
||||||
|
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
|
@ -320,7 +326,7 @@ static void prvInitialiseNewStreamBuffer( StreamBuffer_t * const pxStreamBuffer,
|
||||||
StreamBufferCallbackFunction_t pxReceiveCompletedCallback ) PRIVILEGED_FUNCTION;
|
StreamBufferCallbackFunction_t pxReceiveCompletedCallback ) PRIVILEGED_FUNCTION;
|
||||||
|
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
#if ( configSUPPORT_DYNAMIC_ALLOCATION == 1 )
|
#if ( configSUPPORT_DYNAMIC_ALLOCATION == 1 )
|
||||||
StreamBufferHandle_t xStreamBufferGenericCreate( size_t xBufferSizeBytes,
|
StreamBufferHandle_t xStreamBufferGenericCreate( size_t xBufferSizeBytes,
|
||||||
size_t xTriggerLevelBytes,
|
size_t xTriggerLevelBytes,
|
||||||
BaseType_t xIsMessageBuffer,
|
BaseType_t xIsMessageBuffer,
|
||||||
|
@ -406,10 +412,10 @@ static void prvInitialiseNewStreamBuffer( StreamBuffer_t * const pxStreamBuffer,
|
||||||
/* coverity[misra_c_2012_rule_11_5_violation] */
|
/* coverity[misra_c_2012_rule_11_5_violation] */
|
||||||
return ( StreamBufferHandle_t ) pvAllocatedMemory;
|
return ( StreamBufferHandle_t ) pvAllocatedMemory;
|
||||||
}
|
}
|
||||||
#endif /* configSUPPORT_DYNAMIC_ALLOCATION */
|
#endif /* configSUPPORT_DYNAMIC_ALLOCATION */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
#if ( configSUPPORT_STATIC_ALLOCATION == 1 )
|
#if ( configSUPPORT_STATIC_ALLOCATION == 1 )
|
||||||
|
|
||||||
StreamBufferHandle_t xStreamBufferGenericCreateStatic( size_t xBufferSizeBytes,
|
StreamBufferHandle_t xStreamBufferGenericCreateStatic( size_t xBufferSizeBytes,
|
||||||
size_t xTriggerLevelBytes,
|
size_t xTriggerLevelBytes,
|
||||||
|
@ -497,10 +503,10 @@ static void prvInitialiseNewStreamBuffer( StreamBuffer_t * const pxStreamBuffer,
|
||||||
|
|
||||||
return xReturn;
|
return xReturn;
|
||||||
}
|
}
|
||||||
#endif /* ( configSUPPORT_STATIC_ALLOCATION == 1 ) */
|
#endif /* ( configSUPPORT_STATIC_ALLOCATION == 1 ) */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
#if ( configSUPPORT_STATIC_ALLOCATION == 1 )
|
#if ( configSUPPORT_STATIC_ALLOCATION == 1 )
|
||||||
BaseType_t xStreamBufferGetStaticBuffers( StreamBufferHandle_t xStreamBuffer,
|
BaseType_t xStreamBufferGetStaticBuffers( StreamBufferHandle_t xStreamBuffer,
|
||||||
uint8_t ** ppucStreamBufferStorageArea,
|
uint8_t ** ppucStreamBufferStorageArea,
|
||||||
StaticStreamBuffer_t ** ppxStaticStreamBuffer )
|
StaticStreamBuffer_t ** ppxStaticStreamBuffer )
|
||||||
|
@ -532,7 +538,7 @@ static void prvInitialiseNewStreamBuffer( StreamBuffer_t * const pxStreamBuffer,
|
||||||
|
|
||||||
return xReturn;
|
return xReturn;
|
||||||
}
|
}
|
||||||
#endif /* configSUPPORT_STATIC_ALLOCATION */
|
#endif /* configSUPPORT_STATIC_ALLOCATION */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
void vStreamBufferDelete( StreamBufferHandle_t xStreamBuffer )
|
void vStreamBufferDelete( StreamBufferHandle_t xStreamBuffer )
|
||||||
|
@ -1461,7 +1467,7 @@ static size_t prvReadBytesFromBuffer( StreamBuffer_t * pxStreamBuffer,
|
||||||
|
|
||||||
static size_t prvBytesInBuffer( const StreamBuffer_t * const pxStreamBuffer )
|
static size_t prvBytesInBuffer( const StreamBuffer_t * const pxStreamBuffer )
|
||||||
{
|
{
|
||||||
/* Returns the distance between xTail and xHead. */
|
/* Returns the distance between xTail and xHead. */
|
||||||
size_t xCount;
|
size_t xCount;
|
||||||
|
|
||||||
xCount = pxStreamBuffer->xLength + pxStreamBuffer->xHead;
|
xCount = pxStreamBuffer->xLength + pxStreamBuffer->xHead;
|
||||||
|
@ -1564,7 +1570,7 @@ void vStreamBufferSetStreamBufferNotificationIndex( StreamBufferHandle_t xStream
|
||||||
}
|
}
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
#if ( configUSE_TRACE_FACILITY == 1 )
|
#if ( configUSE_TRACE_FACILITY == 1 )
|
||||||
|
|
||||||
UBaseType_t uxStreamBufferGetStreamBufferNumber( StreamBufferHandle_t xStreamBuffer )
|
UBaseType_t uxStreamBufferGetStreamBufferNumber( StreamBufferHandle_t xStreamBuffer )
|
||||||
{
|
{
|
||||||
|
@ -1575,10 +1581,10 @@ void vStreamBufferSetStreamBufferNotificationIndex( StreamBufferHandle_t xStream
|
||||||
return xStreamBuffer->uxStreamBufferNumber;
|
return xStreamBuffer->uxStreamBufferNumber;
|
||||||
}
|
}
|
||||||
|
|
||||||
#endif /* configUSE_TRACE_FACILITY */
|
#endif /* configUSE_TRACE_FACILITY */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
#if ( configUSE_TRACE_FACILITY == 1 )
|
#if ( configUSE_TRACE_FACILITY == 1 )
|
||||||
|
|
||||||
void vStreamBufferSetStreamBufferNumber( StreamBufferHandle_t xStreamBuffer,
|
void vStreamBufferSetStreamBufferNumber( StreamBufferHandle_t xStreamBuffer,
|
||||||
UBaseType_t uxStreamBufferNumber )
|
UBaseType_t uxStreamBufferNumber )
|
||||||
|
@ -1590,10 +1596,10 @@ void vStreamBufferSetStreamBufferNotificationIndex( StreamBufferHandle_t xStream
|
||||||
traceRETURN_vStreamBufferSetStreamBufferNumber();
|
traceRETURN_vStreamBufferSetStreamBufferNumber();
|
||||||
}
|
}
|
||||||
|
|
||||||
#endif /* configUSE_TRACE_FACILITY */
|
#endif /* configUSE_TRACE_FACILITY */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
#if ( configUSE_TRACE_FACILITY == 1 )
|
#if ( configUSE_TRACE_FACILITY == 1 )
|
||||||
|
|
||||||
uint8_t ucStreamBufferGetStreamBufferType( StreamBufferHandle_t xStreamBuffer )
|
uint8_t ucStreamBufferGetStreamBufferType( StreamBufferHandle_t xStreamBuffer )
|
||||||
{
|
{
|
||||||
|
@ -1604,5 +1610,11 @@ void vStreamBufferSetStreamBufferNotificationIndex( StreamBufferHandle_t xStream
|
||||||
return( ( uint8_t ) ( xStreamBuffer->ucFlags & sbFLAGS_IS_MESSAGE_BUFFER ) );
|
return( ( uint8_t ) ( xStreamBuffer->ucFlags & sbFLAGS_IS_MESSAGE_BUFFER ) );
|
||||||
}
|
}
|
||||||
|
|
||||||
#endif /* configUSE_TRACE_FACILITY */
|
#endif /* configUSE_TRACE_FACILITY */
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
|
/* This entire source file will be skipped if the application is not configured
|
||||||
|
* to include stream buffer functionality. This #if is closed at the very bottom
|
||||||
|
* of this file. If you want to include stream buffers then ensure
|
||||||
|
* configUSE_STREAM_BUFFERS is set to 1 in FreeRTOSConfig.h. */
|
||||||
|
#endif /* configUSE_STREAM_BUFFERS == 1 */
|
||||||
|
|
Loading…
Reference in a new issue