mirror of
https://github.com/FreeRTOS/FreeRTOS-Kernel.git
synced 2025-12-07 13:45:00 -05:00
Update the port to use FreeRTOS_IRQ_Handler instead of the VIM functions
This commit is contained in:
parent
745384b04d
commit
53c84a1f6f
2 changed files with 64 additions and 96 deletions
|
|
@ -83,6 +83,7 @@ extern "C" {
|
|||
#elif( configALLOW_UNPRIVILEGED_CRITICAL_SECTIONS == 1 )
|
||||
#error "This port does not support unprivileged tasks to enter a critical section"
|
||||
#endif /* configALLOW_UNPRIVILEGED_CRITICAL_SECTIONS */
|
||||
|
||||
/* ------------------------- FreeRTOS Config Check ------------------------- */
|
||||
|
||||
/** @brief The size in Bytes that the Privileged System Call Stack should be.
|
||||
|
|
@ -409,10 +410,10 @@ void prvMpuDisable( void );
|
|||
*
|
||||
* @ingroup MPU Control
|
||||
*
|
||||
* @param[in] regionNumber The MPU Region Number to change permissions for
|
||||
* @param[in] baseAddress The base address of the MPU Region
|
||||
* @param[in] regionSize The number of bytes to make the MPU Region
|
||||
* @param[in] regionPermissions The permissions to assign to the MPU Region
|
||||
* @param[in] ulRegionNumber The MPU Region Number to change permissions for
|
||||
* @param[in] ulBaseAddress The base address of the MPU Region
|
||||
* @param[in] ulRegionSize The number of bytes to make the MPU Region
|
||||
* @param[in] ulRegionPermissions The permissions to assign to the MPU Region
|
||||
*
|
||||
* @note This is an Assembly Function implemented in portASM.S.
|
||||
* This is meant as a purely internal function that performs a raw write of the
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue