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:
Kody Stribrny 2024-11-01 10:56:18 -07:00 committed by GitHub
parent de276eb023
commit a081ba8b9c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 11 additions and 11 deletions

View file

@ -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 ) */