mirror of
https://github.com/FreeRTOS/FreeRTOS-Kernel.git
synced 2025-08-19 17:48:33 -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
3 changed files with 11 additions and 11 deletions
|
@ -1806,7 +1806,7 @@
|
|||
portRAISE_PRIVILEGE();
|
||||
portMEMORY_BARRIER();
|
||||
|
||||
vTimerSetReloadMode( xTimer, uxAutoReload );
|
||||
vTimerSetReloadMode( xTimer, xAutoReload );
|
||||
portMEMORY_BARRIER();
|
||||
|
||||
portRESET_PRIVILEGE();
|
||||
|
@ -1814,7 +1814,7 @@
|
|||
}
|
||||
else
|
||||
{
|
||||
vTimerSetReloadMode( xTimer, uxAutoReload );
|
||||
vTimerSetReloadMode( xTimer, xAutoReload );
|
||||
}
|
||||
}
|
||||
#endif /* if ( configUSE_TIMERS == 1 ) */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue