mirror of
https://github.com/FreeRTOS/FreeRTOS-Kernel.git
synced 2025-04-19 21:11:57 -04:00
Fix variable name mismatch, mpu_wrappers type mismatch. (#1181)
Fix variable name mismatch introduced by #1166. Fix MPU v2 wrappers incorrectly using UBaseType_t instead of BaseType.
This commit is contained in:
parent
de276eb023
commit
a081ba8b9c
|
@ -346,12 +346,12 @@ TickType_t MPU_xTimerGetExpiryTime( TimerHandle_t xTimer ) FREERTOS_SYSTEM_CALL;
|
||||||
* with all the APIs. */
|
* with all the APIs. */
|
||||||
TimerHandle_t MPU_xTimerCreate( const char * const pcTimerName,
|
TimerHandle_t MPU_xTimerCreate( const char * const pcTimerName,
|
||||||
const TickType_t xTimerPeriodInTicks,
|
const TickType_t xTimerPeriodInTicks,
|
||||||
const UBaseType_t uxAutoReload,
|
const BaseType_t xAutoReload,
|
||||||
void * const pvTimerID,
|
void * const pvTimerID,
|
||||||
TimerCallbackFunction_t pxCallbackFunction ) PRIVILEGED_FUNCTION;
|
TimerCallbackFunction_t pxCallbackFunction ) PRIVILEGED_FUNCTION;
|
||||||
TimerHandle_t MPU_xTimerCreateStatic( const char * const pcTimerName,
|
TimerHandle_t MPU_xTimerCreateStatic( const char * const pcTimerName,
|
||||||
const TickType_t xTimerPeriodInTicks,
|
const TickType_t xTimerPeriodInTicks,
|
||||||
const UBaseType_t uxAutoReload,
|
const BaseType_t xAutoReload,
|
||||||
void * const pvTimerID,
|
void * const pvTimerID,
|
||||||
TimerCallbackFunction_t pxCallbackFunction,
|
TimerCallbackFunction_t pxCallbackFunction,
|
||||||
StaticTimer_t * pxTimerBuffer ) PRIVILEGED_FUNCTION;
|
StaticTimer_t * pxTimerBuffer ) PRIVILEGED_FUNCTION;
|
||||||
|
|
|
@ -1806,7 +1806,7 @@
|
||||||
portRAISE_PRIVILEGE();
|
portRAISE_PRIVILEGE();
|
||||||
portMEMORY_BARRIER();
|
portMEMORY_BARRIER();
|
||||||
|
|
||||||
vTimerSetReloadMode( xTimer, uxAutoReload );
|
vTimerSetReloadMode( xTimer, xAutoReload );
|
||||||
portMEMORY_BARRIER();
|
portMEMORY_BARRIER();
|
||||||
|
|
||||||
portRESET_PRIVILEGE();
|
portRESET_PRIVILEGE();
|
||||||
|
@ -1814,7 +1814,7 @@
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
vTimerSetReloadMode( xTimer, uxAutoReload );
|
vTimerSetReloadMode( xTimer, xAutoReload );
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
#endif /* if ( configUSE_TIMERS == 1 ) */
|
#endif /* if ( configUSE_TIMERS == 1 ) */
|
||||||
|
|
|
@ -3558,10 +3558,10 @@
|
||||||
#if ( configUSE_TIMERS == 1 )
|
#if ( configUSE_TIMERS == 1 )
|
||||||
|
|
||||||
void MPU_vTimerSetReloadModeImpl( TimerHandle_t xTimer,
|
void MPU_vTimerSetReloadModeImpl( TimerHandle_t xTimer,
|
||||||
const UBaseType_t uxAutoReload ) PRIVILEGED_FUNCTION;
|
const BaseType_t xAutoReload ) PRIVILEGED_FUNCTION;
|
||||||
|
|
||||||
void MPU_vTimerSetReloadModeImpl( TimerHandle_t xTimer,
|
void MPU_vTimerSetReloadModeImpl( TimerHandle_t xTimer,
|
||||||
const UBaseType_t uxAutoReload ) /* PRIVILEGED_FUNCTION */
|
const BaseType_t xAutoReload ) /* PRIVILEGED_FUNCTION */
|
||||||
{
|
{
|
||||||
TimerHandle_t xInternalTimerHandle = NULL;
|
TimerHandle_t xInternalTimerHandle = NULL;
|
||||||
int32_t lIndex;
|
int32_t lIndex;
|
||||||
|
@ -3579,7 +3579,7 @@
|
||||||
|
|
||||||
if( xInternalTimerHandle != NULL )
|
if( xInternalTimerHandle != NULL )
|
||||||
{
|
{
|
||||||
vTimerSetReloadMode( xInternalTimerHandle, uxAutoReload );
|
vTimerSetReloadMode( xInternalTimerHandle, xAutoReload );
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -3733,7 +3733,7 @@
|
||||||
|
|
||||||
TimerHandle_t MPU_xTimerCreate( const char * const pcTimerName,
|
TimerHandle_t MPU_xTimerCreate( const char * const pcTimerName,
|
||||||
const TickType_t xTimerPeriodInTicks,
|
const TickType_t xTimerPeriodInTicks,
|
||||||
const UBaseType_t uxAutoReload,
|
const BaseType_t xAutoReload,
|
||||||
void * const pvTimerID,
|
void * const pvTimerID,
|
||||||
TimerCallbackFunction_t pxCallbackFunction ) /* PRIVILEGED_FUNCTION */
|
TimerCallbackFunction_t pxCallbackFunction ) /* PRIVILEGED_FUNCTION */
|
||||||
{
|
{
|
||||||
|
@ -3745,7 +3745,7 @@
|
||||||
|
|
||||||
if( lIndex != -1 )
|
if( lIndex != -1 )
|
||||||
{
|
{
|
||||||
xInternalTimerHandle = xTimerCreate( pcTimerName, xTimerPeriodInTicks, uxAutoReload, pvTimerID, MPU_TimerCallback );
|
xInternalTimerHandle = xTimerCreate( pcTimerName, xTimerPeriodInTicks, xAutoReload, pvTimerID, MPU_TimerCallback );
|
||||||
|
|
||||||
if( xInternalTimerHandle != NULL )
|
if( xInternalTimerHandle != NULL )
|
||||||
{
|
{
|
||||||
|
@ -3768,7 +3768,7 @@
|
||||||
|
|
||||||
TimerHandle_t MPU_xTimerCreateStatic( const char * const pcTimerName,
|
TimerHandle_t MPU_xTimerCreateStatic( const char * const pcTimerName,
|
||||||
const TickType_t xTimerPeriodInTicks,
|
const TickType_t xTimerPeriodInTicks,
|
||||||
const UBaseType_t uxAutoReload,
|
const BaseType_t xAutoReload,
|
||||||
void * const pvTimerID,
|
void * const pvTimerID,
|
||||||
TimerCallbackFunction_t pxCallbackFunction,
|
TimerCallbackFunction_t pxCallbackFunction,
|
||||||
StaticTimer_t * pxTimerBuffer ) /* PRIVILEGED_FUNCTION */
|
StaticTimer_t * pxTimerBuffer ) /* PRIVILEGED_FUNCTION */
|
||||||
|
@ -3781,7 +3781,7 @@
|
||||||
|
|
||||||
if( lIndex != -1 )
|
if( lIndex != -1 )
|
||||||
{
|
{
|
||||||
xInternalTimerHandle = xTimerCreateStatic( pcTimerName, xTimerPeriodInTicks, uxAutoReload, pvTimerID, MPU_TimerCallback, pxTimerBuffer );
|
xInternalTimerHandle = xTimerCreateStatic( pcTimerName, xTimerPeriodInTicks, xAutoReload, pvTimerID, MPU_TimerCallback, pxTimerBuffer );
|
||||||
|
|
||||||
if( xInternalTimerHandle != NULL )
|
if( xInternalTimerHandle != NULL )
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue