Skip to content

Commit 8225a7f

Browse files
authored
Fix AutoReload variable name (#1166)
Removes the 'u' prefix as the variable is no longer unsigned.
1 parent c0585ad commit 8225a7f

File tree

20 files changed

+38
-38
lines changed

20 files changed

+38
-38
lines changed

include/mpu_prototypes.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -335,7 +335,7 @@ BaseType_t MPU_xTimerGenericCommandFromTask( TimerHandle_t xTimer,
335335
BaseType_t MPU_xTimerGenericCommandFromTaskEntry( const xTimerGenericCommandFromTaskParams_t * pxParams ) FREERTOS_SYSTEM_CALL;
336336
const char * MPU_pcTimerGetName( TimerHandle_t xTimer ) FREERTOS_SYSTEM_CALL;
337337
void MPU_vTimerSetReloadMode( TimerHandle_t xTimer,
338-
const BaseType_t uxAutoReload ) FREERTOS_SYSTEM_CALL;
338+
const BaseType_t xAutoReload ) FREERTOS_SYSTEM_CALL;
339339
BaseType_t MPU_xTimerGetReloadMode( TimerHandle_t xTimer ) FREERTOS_SYSTEM_CALL;
340340
UBaseType_t MPU_uxTimerGetReloadMode( TimerHandle_t xTimer ) FREERTOS_SYSTEM_CALL;
341341
TickType_t MPU_xTimerGetPeriod( TimerHandle_t xTimer ) FREERTOS_SYSTEM_CALL;

portable/ARMv8M/non_secure/portable/GCC/ARM_CM23/mpu_wrappers_v2_asm.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1546,10 +1546,10 @@
15461546
#if ( configUSE_TIMERS == 1 )
15471547

15481548
void MPU_vTimerSetReloadMode( TimerHandle_t xTimer,
1549-
const BaseType_t uxAutoReload ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
1549+
const BaseType_t xAutoReload ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
15501550

15511551
void MPU_vTimerSetReloadMode( TimerHandle_t xTimer,
1552-
const BaseType_t uxAutoReload ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */
1552+
const BaseType_t xAutoReload ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */
15531553
{
15541554
__asm volatile
15551555
(

portable/ARMv8M/non_secure/portable/GCC/ARM_CM23_NTZ/mpu_wrappers_v2_asm.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1546,10 +1546,10 @@
15461546
#if ( configUSE_TIMERS == 1 )
15471547

15481548
void MPU_vTimerSetReloadMode( TimerHandle_t xTimer,
1549-
const BaseType_t uxAutoReload ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
1549+
const BaseType_t xAutoReload ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
15501550

15511551
void MPU_vTimerSetReloadMode( TimerHandle_t xTimer,
1552-
const BaseType_t uxAutoReload ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */
1552+
const BaseType_t xAutoReload ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */
15531553
{
15541554
__asm volatile
15551555
(

portable/ARMv8M/non_secure/portable/GCC/ARM_CM33/mpu_wrappers_v2_asm.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1495,10 +1495,10 @@
14951495
#if ( configUSE_TIMERS == 1 )
14961496

14971497
void MPU_vTimerSetReloadMode( TimerHandle_t xTimer,
1498-
const BaseType_t uxAutoReload ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
1498+
const BaseType_t xAutoReload ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
14991499

15001500
void MPU_vTimerSetReloadMode( TimerHandle_t xTimer,
1501-
const BaseType_t uxAutoReload ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */
1501+
const BaseType_t xAutoReload ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */
15021502
{
15031503
__asm volatile
15041504
(

portable/ARMv8M/non_secure/portable/GCC/ARM_CM33_NTZ/mpu_wrappers_v2_asm.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1495,10 +1495,10 @@
14951495
#if ( configUSE_TIMERS == 1 )
14961496

14971497
void MPU_vTimerSetReloadMode( TimerHandle_t xTimer,
1498-
const BaseType_t uxAutoReload ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
1498+
const BaseType_t xAutoReload ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
14991499

15001500
void MPU_vTimerSetReloadMode( TimerHandle_t xTimer,
1501-
const BaseType_t uxAutoReload ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */
1501+
const BaseType_t xAutoReload ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */
15021502
{
15031503
__asm volatile
15041504
(

portable/Common/mpu_wrappers.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1799,7 +1799,7 @@
17991799

18001800
#if ( configUSE_TIMERS == 1 )
18011801
void MPU_vTimerSetReloadMode( TimerHandle_t xTimer,
1802-
const BaseType_t uxAutoReload ) /* FREERTOS_SYSTEM_CALL */
1802+
const BaseType_t xAutoReload ) /* FREERTOS_SYSTEM_CALL */
18031803
{
18041804
if( portIS_PRIVILEGED() == pdFALSE )
18051805
{

portable/GCC/ARM_CM0/mpu_wrappers_v2_asm.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1648,10 +1648,10 @@
16481648
#if ( configUSE_TIMERS == 1 )
16491649

16501650
void MPU_vTimerSetReloadMode( TimerHandle_t xTimer,
1651-
const BaseType_t uxAutoReload ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
1651+
const BaseType_t xAutoReload ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
16521652

16531653
void MPU_vTimerSetReloadMode( TimerHandle_t xTimer,
1654-
const BaseType_t uxAutoReload ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */
1654+
const BaseType_t xAutoReload ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */
16551655
{
16561656
__asm volatile
16571657
(

portable/GCC/ARM_CM23/non_secure/mpu_wrappers_v2_asm.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1546,10 +1546,10 @@
15461546
#if ( configUSE_TIMERS == 1 )
15471547

15481548
void MPU_vTimerSetReloadMode( TimerHandle_t xTimer,
1549-
const BaseType_t uxAutoReload ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
1549+
const BaseType_t xAutoReload ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
15501550

15511551
void MPU_vTimerSetReloadMode( TimerHandle_t xTimer,
1552-
const BaseType_t uxAutoReload ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */
1552+
const BaseType_t xAutoReload ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */
15531553
{
15541554
__asm volatile
15551555
(

portable/GCC/ARM_CM23_NTZ/non_secure/mpu_wrappers_v2_asm.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1546,10 +1546,10 @@
15461546
#if ( configUSE_TIMERS == 1 )
15471547

15481548
void MPU_vTimerSetReloadMode( TimerHandle_t xTimer,
1549-
const BaseType_t uxAutoReload ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
1549+
const BaseType_t xAutoReload ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
15501550

15511551
void MPU_vTimerSetReloadMode( TimerHandle_t xTimer,
1552-
const BaseType_t uxAutoReload ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */
1552+
const BaseType_t xAutoReload ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */
15531553
{
15541554
__asm volatile
15551555
(

portable/GCC/ARM_CM33/non_secure/mpu_wrappers_v2_asm.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1495,10 +1495,10 @@
14951495
#if ( configUSE_TIMERS == 1 )
14961496

14971497
void MPU_vTimerSetReloadMode( TimerHandle_t xTimer,
1498-
const BaseType_t uxAutoReload ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
1498+
const BaseType_t xAutoReload ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
14991499

15001500
void MPU_vTimerSetReloadMode( TimerHandle_t xTimer,
1501-
const BaseType_t uxAutoReload ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */
1501+
const BaseType_t xAutoReload ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */
15021502
{
15031503
__asm volatile
15041504
(

portable/GCC/ARM_CM33_NTZ/non_secure/mpu_wrappers_v2_asm.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1495,10 +1495,10 @@
14951495
#if ( configUSE_TIMERS == 1 )
14961496

14971497
void MPU_vTimerSetReloadMode( TimerHandle_t xTimer,
1498-
const BaseType_t uxAutoReload ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
1498+
const BaseType_t xAutoReload ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
14991499

15001500
void MPU_vTimerSetReloadMode( TimerHandle_t xTimer,
1501-
const BaseType_t uxAutoReload ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */
1501+
const BaseType_t xAutoReload ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */
15021502
{
15031503
__asm volatile
15041504
(

portable/GCC/ARM_CM35P/non_secure/mpu_wrappers_v2_asm.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1495,10 +1495,10 @@
14951495
#if ( configUSE_TIMERS == 1 )
14961496

14971497
void MPU_vTimerSetReloadMode( TimerHandle_t xTimer,
1498-
const BaseType_t uxAutoReload ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
1498+
const BaseType_t xAutoReload ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
14991499

15001500
void MPU_vTimerSetReloadMode( TimerHandle_t xTimer,
1501-
const BaseType_t uxAutoReload ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */
1501+
const BaseType_t xAutoReload ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */
15021502
{
15031503
__asm volatile
15041504
(

portable/GCC/ARM_CM35P_NTZ/non_secure/mpu_wrappers_v2_asm.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1495,10 +1495,10 @@
14951495
#if ( configUSE_TIMERS == 1 )
14961496

14971497
void MPU_vTimerSetReloadMode( TimerHandle_t xTimer,
1498-
const BaseType_t uxAutoReload ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
1498+
const BaseType_t xAutoReload ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
14991499

15001500
void MPU_vTimerSetReloadMode( TimerHandle_t xTimer,
1501-
const BaseType_t uxAutoReload ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */
1501+
const BaseType_t xAutoReload ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */
15021502
{
15031503
__asm volatile
15041504
(

portable/GCC/ARM_CM3_MPU/mpu_wrappers_v2_asm.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1495,10 +1495,10 @@
14951495
#if ( configUSE_TIMERS == 1 )
14961496

14971497
void MPU_vTimerSetReloadMode( TimerHandle_t xTimer,
1498-
const BaseType_t uxAutoReload ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
1498+
const BaseType_t xAutoReload ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
14991499

15001500
void MPU_vTimerSetReloadMode( TimerHandle_t xTimer,
1501-
const BaseType_t uxAutoReload ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */
1501+
const BaseType_t xAutoReload ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */
15021502
{
15031503
__asm volatile
15041504
(

portable/GCC/ARM_CM4_MPU/mpu_wrappers_v2_asm.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1495,10 +1495,10 @@
14951495
#if ( configUSE_TIMERS == 1 )
14961496

14971497
void MPU_vTimerSetReloadMode( TimerHandle_t xTimer,
1498-
const BaseType_t uxAutoReload ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
1498+
const BaseType_t xAutoReload ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
14991499

15001500
void MPU_vTimerSetReloadMode( TimerHandle_t xTimer,
1501-
const BaseType_t uxAutoReload ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */
1501+
const BaseType_t xAutoReload ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */
15021502
{
15031503
__asm volatile
15041504
(

portable/GCC/ARM_CM55/non_secure/mpu_wrappers_v2_asm.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1495,10 +1495,10 @@
14951495
#if ( configUSE_TIMERS == 1 )
14961496

14971497
void MPU_vTimerSetReloadMode( TimerHandle_t xTimer,
1498-
const BaseType_t uxAutoReload ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
1498+
const BaseType_t xAutoReload ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
14991499

15001500
void MPU_vTimerSetReloadMode( TimerHandle_t xTimer,
1501-
const BaseType_t uxAutoReload ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */
1501+
const BaseType_t xAutoReload ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */
15021502
{
15031503
__asm volatile
15041504
(

portable/GCC/ARM_CM55_NTZ/non_secure/mpu_wrappers_v2_asm.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1495,10 +1495,10 @@
14951495
#if ( configUSE_TIMERS == 1 )
14961496

14971497
void MPU_vTimerSetReloadMode( TimerHandle_t xTimer,
1498-
const BaseType_t uxAutoReload ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
1498+
const BaseType_t xAutoReload ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
14991499

15001500
void MPU_vTimerSetReloadMode( TimerHandle_t xTimer,
1501-
const BaseType_t uxAutoReload ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */
1501+
const BaseType_t xAutoReload ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */
15021502
{
15031503
__asm volatile
15041504
(

portable/GCC/ARM_CM85/non_secure/mpu_wrappers_v2_asm.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1495,10 +1495,10 @@
14951495
#if ( configUSE_TIMERS == 1 )
14961496

14971497
void MPU_vTimerSetReloadMode( TimerHandle_t xTimer,
1498-
const BaseType_t uxAutoReload ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
1498+
const BaseType_t xAutoReload ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
14991499

15001500
void MPU_vTimerSetReloadMode( TimerHandle_t xTimer,
1501-
const BaseType_t uxAutoReload ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */
1501+
const BaseType_t xAutoReload ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */
15021502
{
15031503
__asm volatile
15041504
(

portable/GCC/ARM_CM85_NTZ/non_secure/mpu_wrappers_v2_asm.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1495,10 +1495,10 @@
14951495
#if ( configUSE_TIMERS == 1 )
14961496

14971497
void MPU_vTimerSetReloadMode( TimerHandle_t xTimer,
1498-
const BaseType_t uxAutoReload ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
1498+
const BaseType_t xAutoReload ) __attribute__( ( naked ) ) FREERTOS_SYSTEM_CALL;
14991499

15001500
void MPU_vTimerSetReloadMode( TimerHandle_t xTimer,
1501-
const BaseType_t uxAutoReload ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */
1501+
const BaseType_t xAutoReload ) /* __attribute__ (( naked )) FREERTOS_SYSTEM_CALL */
15021502
{
15031503
__asm volatile
15041504
(

portable/RVDS/ARM_CM4_MPU/mpu_wrappers_v2_asm.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1240,10 +1240,10 @@ MPU_pcTimerGetName_Unpriv
12401240
#if ( configUSE_TIMERS == 1 )
12411241

12421242
void MPU_vTimerSetReloadMode( TimerHandle_t xTimer,
1243-
const BaseType_t uxAutoReload ) FREERTOS_SYSTEM_CALL;
1243+
const BaseType_t xAutoReload ) FREERTOS_SYSTEM_CALL;
12441244

12451245
__asm void MPU_vTimerSetReloadMode( TimerHandle_t xTimer,
1246-
const BaseType_t uxAutoReload ) /* FREERTOS_SYSTEM_CALL */
1246+
const BaseType_t xAutoReload ) /* FREERTOS_SYSTEM_CALL */
12471247
{
12481248
PRESERVE8
12491249
extern MPU_vTimerSetReloadModeImpl

0 commit comments

Comments
 (0)