Fix AutoReload variable name

Removes the 'u' prefix as the variable is
no longer unsigned.
This commit is contained in:
Kody Stribrny 2024-10-30 08:56:36 -07:00
parent c0585ad814
commit 9b49070ff5
20 changed files with 38 additions and 38 deletions

View file

@ -1240,10 +1240,10 @@ MPU_pcTimerGetName_Unpriv
#if ( configUSE_TIMERS == 1 )
void MPU_vTimerSetReloadMode( TimerHandle_t xTimer,
const BaseType_t uxAutoReload ) FREERTOS_SYSTEM_CALL;
const BaseType_t xAutoReload ) FREERTOS_SYSTEM_CALL;
__asm void MPU_vTimerSetReloadMode( TimerHandle_t xTimer,
const BaseType_t uxAutoReload ) /* FREERTOS_SYSTEM_CALL */
const BaseType_t xAutoReload ) /* FREERTOS_SYSTEM_CALL */
{
PRESERVE8
extern MPU_vTimerSetReloadModeImpl