mirror of
https://github.com/FreeRTOS/FreeRTOS-Kernel.git
synced 2026-06-20 01:53:42 +02:00
Fix MPU wrapper macro mapping for ARMv8M ports (#1419)
This commit is contained in:
parent
b4005374c7
commit
d877cd5398
@ -550,6 +550,11 @@ portDONT_DISCARD void vPortSVCHandler_C( uint32_t * pulCallerStackAddress ) PRIV
|
|||||||
extern BaseType_t configWAKE_SECONDARY_CORES( void );
|
extern BaseType_t configWAKE_SECONDARY_CORES( void );
|
||||||
|
|
||||||
#endif /* #if ( configNUMBER_OF_CORES > 1 ) */
|
#endif /* #if ( configNUMBER_OF_CORES > 1 ) */
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Configures interrupt priorities.
|
||||||
|
*/
|
||||||
|
void vPortConfigureInterruptPriorities( void ) PRIVILEGED_FUNCTION;
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
#if ( ( configENABLE_MPU == 1 ) && ( configUSE_MPU_WRAPPERS_V1 == 0 ) )
|
#if ( ( configENABLE_MPU == 1 ) && ( configUSE_MPU_WRAPPERS_V1 == 0 ) )
|
||||||
|
|||||||
@ -30,8 +30,6 @@
|
|||||||
#ifndef PORTMACROCOMMON_H
|
#ifndef PORTMACROCOMMON_H
|
||||||
#define PORTMACROCOMMON_H
|
#define PORTMACROCOMMON_H
|
||||||
|
|
||||||
#include "mpu_wrappers.h"
|
|
||||||
|
|
||||||
/* *INDENT-OFF* */
|
/* *INDENT-OFF* */
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
extern "C" {
|
extern "C" {
|
||||||
@ -153,11 +151,6 @@ extern void vClearInterruptMask( uint32_t ulMask ) /* __attribute__(( naked )) P
|
|||||||
void vApplicationGenerateTaskRandomPacKey( uint32_t * pulTaskPacKey );
|
void vApplicationGenerateTaskRandomPacKey( uint32_t * pulTaskPacKey );
|
||||||
|
|
||||||
#endif /* configENABLE_PAC */
|
#endif /* configENABLE_PAC */
|
||||||
|
|
||||||
/**
|
|
||||||
* @brief Configures interrupt priorities.
|
|
||||||
*/
|
|
||||||
void vPortConfigureInterruptPriorities( void ) PRIVILEGED_FUNCTION;
|
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
@ -550,6 +550,11 @@ portDONT_DISCARD void vPortSVCHandler_C( uint32_t * pulCallerStackAddress ) PRIV
|
|||||||
extern BaseType_t configWAKE_SECONDARY_CORES( void );
|
extern BaseType_t configWAKE_SECONDARY_CORES( void );
|
||||||
|
|
||||||
#endif /* #if ( configNUMBER_OF_CORES > 1 ) */
|
#endif /* #if ( configNUMBER_OF_CORES > 1 ) */
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Configures interrupt priorities.
|
||||||
|
*/
|
||||||
|
void vPortConfigureInterruptPriorities( void ) PRIVILEGED_FUNCTION;
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
#if ( ( configENABLE_MPU == 1 ) && ( configUSE_MPU_WRAPPERS_V1 == 0 ) )
|
#if ( ( configENABLE_MPU == 1 ) && ( configUSE_MPU_WRAPPERS_V1 == 0 ) )
|
||||||
|
|||||||
@ -30,8 +30,6 @@
|
|||||||
#ifndef PORTMACROCOMMON_H
|
#ifndef PORTMACROCOMMON_H
|
||||||
#define PORTMACROCOMMON_H
|
#define PORTMACROCOMMON_H
|
||||||
|
|
||||||
#include "mpu_wrappers.h"
|
|
||||||
|
|
||||||
/* *INDENT-OFF* */
|
/* *INDENT-OFF* */
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
extern "C" {
|
extern "C" {
|
||||||
@ -153,11 +151,6 @@ extern void vClearInterruptMask( uint32_t ulMask ) /* __attribute__(( naked )) P
|
|||||||
void vApplicationGenerateTaskRandomPacKey( uint32_t * pulTaskPacKey );
|
void vApplicationGenerateTaskRandomPacKey( uint32_t * pulTaskPacKey );
|
||||||
|
|
||||||
#endif /* configENABLE_PAC */
|
#endif /* configENABLE_PAC */
|
||||||
|
|
||||||
/**
|
|
||||||
* @brief Configures interrupt priorities.
|
|
||||||
*/
|
|
||||||
void vPortConfigureInterruptPriorities( void ) PRIVILEGED_FUNCTION;
|
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
@ -550,6 +550,11 @@ portDONT_DISCARD void vPortSVCHandler_C( uint32_t * pulCallerStackAddress ) PRIV
|
|||||||
extern BaseType_t configWAKE_SECONDARY_CORES( void );
|
extern BaseType_t configWAKE_SECONDARY_CORES( void );
|
||||||
|
|
||||||
#endif /* #if ( configNUMBER_OF_CORES > 1 ) */
|
#endif /* #if ( configNUMBER_OF_CORES > 1 ) */
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Configures interrupt priorities.
|
||||||
|
*/
|
||||||
|
void vPortConfigureInterruptPriorities( void ) PRIVILEGED_FUNCTION;
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
#if ( ( configENABLE_MPU == 1 ) && ( configUSE_MPU_WRAPPERS_V1 == 0 ) )
|
#if ( ( configENABLE_MPU == 1 ) && ( configUSE_MPU_WRAPPERS_V1 == 0 ) )
|
||||||
|
|||||||
@ -30,8 +30,6 @@
|
|||||||
#ifndef PORTMACROCOMMON_H
|
#ifndef PORTMACROCOMMON_H
|
||||||
#define PORTMACROCOMMON_H
|
#define PORTMACROCOMMON_H
|
||||||
|
|
||||||
#include "mpu_wrappers.h"
|
|
||||||
|
|
||||||
/* *INDENT-OFF* */
|
/* *INDENT-OFF* */
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
extern "C" {
|
extern "C" {
|
||||||
@ -153,11 +151,6 @@ extern void vClearInterruptMask( uint32_t ulMask ) /* __attribute__(( naked )) P
|
|||||||
void vApplicationGenerateTaskRandomPacKey( uint32_t * pulTaskPacKey );
|
void vApplicationGenerateTaskRandomPacKey( uint32_t * pulTaskPacKey );
|
||||||
|
|
||||||
#endif /* configENABLE_PAC */
|
#endif /* configENABLE_PAC */
|
||||||
|
|
||||||
/**
|
|
||||||
* @brief Configures interrupt priorities.
|
|
||||||
*/
|
|
||||||
void vPortConfigureInterruptPriorities( void ) PRIVILEGED_FUNCTION;
|
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
@ -550,6 +550,11 @@ portDONT_DISCARD void vPortSVCHandler_C( uint32_t * pulCallerStackAddress ) PRIV
|
|||||||
extern BaseType_t configWAKE_SECONDARY_CORES( void );
|
extern BaseType_t configWAKE_SECONDARY_CORES( void );
|
||||||
|
|
||||||
#endif /* #if ( configNUMBER_OF_CORES > 1 ) */
|
#endif /* #if ( configNUMBER_OF_CORES > 1 ) */
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Configures interrupt priorities.
|
||||||
|
*/
|
||||||
|
void vPortConfigureInterruptPriorities( void ) PRIVILEGED_FUNCTION;
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
#if ( ( configENABLE_MPU == 1 ) && ( configUSE_MPU_WRAPPERS_V1 == 0 ) )
|
#if ( ( configENABLE_MPU == 1 ) && ( configUSE_MPU_WRAPPERS_V1 == 0 ) )
|
||||||
|
|||||||
@ -30,8 +30,6 @@
|
|||||||
#ifndef PORTMACROCOMMON_H
|
#ifndef PORTMACROCOMMON_H
|
||||||
#define PORTMACROCOMMON_H
|
#define PORTMACROCOMMON_H
|
||||||
|
|
||||||
#include "mpu_wrappers.h"
|
|
||||||
|
|
||||||
/* *INDENT-OFF* */
|
/* *INDENT-OFF* */
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
extern "C" {
|
extern "C" {
|
||||||
@ -153,11 +151,6 @@ extern void vClearInterruptMask( uint32_t ulMask ) /* __attribute__(( naked )) P
|
|||||||
void vApplicationGenerateTaskRandomPacKey( uint32_t * pulTaskPacKey );
|
void vApplicationGenerateTaskRandomPacKey( uint32_t * pulTaskPacKey );
|
||||||
|
|
||||||
#endif /* configENABLE_PAC */
|
#endif /* configENABLE_PAC */
|
||||||
|
|
||||||
/**
|
|
||||||
* @brief Configures interrupt priorities.
|
|
||||||
*/
|
|
||||||
void vPortConfigureInterruptPriorities( void ) PRIVILEGED_FUNCTION;
|
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
@ -550,6 +550,11 @@ portDONT_DISCARD void vPortSVCHandler_C( uint32_t * pulCallerStackAddress ) PRIV
|
|||||||
extern BaseType_t configWAKE_SECONDARY_CORES( void );
|
extern BaseType_t configWAKE_SECONDARY_CORES( void );
|
||||||
|
|
||||||
#endif /* #if ( configNUMBER_OF_CORES > 1 ) */
|
#endif /* #if ( configNUMBER_OF_CORES > 1 ) */
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Configures interrupt priorities.
|
||||||
|
*/
|
||||||
|
void vPortConfigureInterruptPriorities( void ) PRIVILEGED_FUNCTION;
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
#if ( ( configENABLE_MPU == 1 ) && ( configUSE_MPU_WRAPPERS_V1 == 0 ) )
|
#if ( ( configENABLE_MPU == 1 ) && ( configUSE_MPU_WRAPPERS_V1 == 0 ) )
|
||||||
|
|||||||
@ -30,8 +30,6 @@
|
|||||||
#ifndef PORTMACROCOMMON_H
|
#ifndef PORTMACROCOMMON_H
|
||||||
#define PORTMACROCOMMON_H
|
#define PORTMACROCOMMON_H
|
||||||
|
|
||||||
#include "mpu_wrappers.h"
|
|
||||||
|
|
||||||
/* *INDENT-OFF* */
|
/* *INDENT-OFF* */
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
extern "C" {
|
extern "C" {
|
||||||
@ -153,11 +151,6 @@ extern void vClearInterruptMask( uint32_t ulMask ) /* __attribute__(( naked )) P
|
|||||||
void vApplicationGenerateTaskRandomPacKey( uint32_t * pulTaskPacKey );
|
void vApplicationGenerateTaskRandomPacKey( uint32_t * pulTaskPacKey );
|
||||||
|
|
||||||
#endif /* configENABLE_PAC */
|
#endif /* configENABLE_PAC */
|
||||||
|
|
||||||
/**
|
|
||||||
* @brief Configures interrupt priorities.
|
|
||||||
*/
|
|
||||||
void vPortConfigureInterruptPriorities( void ) PRIVILEGED_FUNCTION;
|
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
@ -550,6 +550,11 @@ portDONT_DISCARD void vPortSVCHandler_C( uint32_t * pulCallerStackAddress ) PRIV
|
|||||||
extern BaseType_t configWAKE_SECONDARY_CORES( void );
|
extern BaseType_t configWAKE_SECONDARY_CORES( void );
|
||||||
|
|
||||||
#endif /* #if ( configNUMBER_OF_CORES > 1 ) */
|
#endif /* #if ( configNUMBER_OF_CORES > 1 ) */
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Configures interrupt priorities.
|
||||||
|
*/
|
||||||
|
void vPortConfigureInterruptPriorities( void ) PRIVILEGED_FUNCTION;
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
#if ( ( configENABLE_MPU == 1 ) && ( configUSE_MPU_WRAPPERS_V1 == 0 ) )
|
#if ( ( configENABLE_MPU == 1 ) && ( configUSE_MPU_WRAPPERS_V1 == 0 ) )
|
||||||
|
|||||||
@ -30,8 +30,6 @@
|
|||||||
#ifndef PORTMACROCOMMON_H
|
#ifndef PORTMACROCOMMON_H
|
||||||
#define PORTMACROCOMMON_H
|
#define PORTMACROCOMMON_H
|
||||||
|
|
||||||
#include "mpu_wrappers.h"
|
|
||||||
|
|
||||||
/* *INDENT-OFF* */
|
/* *INDENT-OFF* */
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
extern "C" {
|
extern "C" {
|
||||||
@ -153,11 +151,6 @@ extern void vClearInterruptMask( uint32_t ulMask ) /* __attribute__(( naked )) P
|
|||||||
void vApplicationGenerateTaskRandomPacKey( uint32_t * pulTaskPacKey );
|
void vApplicationGenerateTaskRandomPacKey( uint32_t * pulTaskPacKey );
|
||||||
|
|
||||||
#endif /* configENABLE_PAC */
|
#endif /* configENABLE_PAC */
|
||||||
|
|
||||||
/**
|
|
||||||
* @brief Configures interrupt priorities.
|
|
||||||
*/
|
|
||||||
void vPortConfigureInterruptPriorities( void ) PRIVILEGED_FUNCTION;
|
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
@ -550,6 +550,11 @@ portDONT_DISCARD void vPortSVCHandler_C( uint32_t * pulCallerStackAddress ) PRIV
|
|||||||
extern BaseType_t configWAKE_SECONDARY_CORES( void );
|
extern BaseType_t configWAKE_SECONDARY_CORES( void );
|
||||||
|
|
||||||
#endif /* #if ( configNUMBER_OF_CORES > 1 ) */
|
#endif /* #if ( configNUMBER_OF_CORES > 1 ) */
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Configures interrupt priorities.
|
||||||
|
*/
|
||||||
|
void vPortConfigureInterruptPriorities( void ) PRIVILEGED_FUNCTION;
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
#if ( ( configENABLE_MPU == 1 ) && ( configUSE_MPU_WRAPPERS_V1 == 0 ) )
|
#if ( ( configENABLE_MPU == 1 ) && ( configUSE_MPU_WRAPPERS_V1 == 0 ) )
|
||||||
|
|||||||
@ -30,8 +30,6 @@
|
|||||||
#ifndef PORTMACROCOMMON_H
|
#ifndef PORTMACROCOMMON_H
|
||||||
#define PORTMACROCOMMON_H
|
#define PORTMACROCOMMON_H
|
||||||
|
|
||||||
#include "mpu_wrappers.h"
|
|
||||||
|
|
||||||
/* *INDENT-OFF* */
|
/* *INDENT-OFF* */
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
extern "C" {
|
extern "C" {
|
||||||
@ -153,11 +151,6 @@ extern void vClearInterruptMask( uint32_t ulMask ) /* __attribute__(( naked )) P
|
|||||||
void vApplicationGenerateTaskRandomPacKey( uint32_t * pulTaskPacKey );
|
void vApplicationGenerateTaskRandomPacKey( uint32_t * pulTaskPacKey );
|
||||||
|
|
||||||
#endif /* configENABLE_PAC */
|
#endif /* configENABLE_PAC */
|
||||||
|
|
||||||
/**
|
|
||||||
* @brief Configures interrupt priorities.
|
|
||||||
*/
|
|
||||||
void vPortConfigureInterruptPriorities( void ) PRIVILEGED_FUNCTION;
|
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
@ -550,6 +550,11 @@ portDONT_DISCARD void vPortSVCHandler_C( uint32_t * pulCallerStackAddress ) PRIV
|
|||||||
extern BaseType_t configWAKE_SECONDARY_CORES( void );
|
extern BaseType_t configWAKE_SECONDARY_CORES( void );
|
||||||
|
|
||||||
#endif /* #if ( configNUMBER_OF_CORES > 1 ) */
|
#endif /* #if ( configNUMBER_OF_CORES > 1 ) */
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Configures interrupt priorities.
|
||||||
|
*/
|
||||||
|
void vPortConfigureInterruptPriorities( void ) PRIVILEGED_FUNCTION;
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
#if ( ( configENABLE_MPU == 1 ) && ( configUSE_MPU_WRAPPERS_V1 == 0 ) )
|
#if ( ( configENABLE_MPU == 1 ) && ( configUSE_MPU_WRAPPERS_V1 == 0 ) )
|
||||||
|
|||||||
@ -30,8 +30,6 @@
|
|||||||
#ifndef PORTMACROCOMMON_H
|
#ifndef PORTMACROCOMMON_H
|
||||||
#define PORTMACROCOMMON_H
|
#define PORTMACROCOMMON_H
|
||||||
|
|
||||||
#include "mpu_wrappers.h"
|
|
||||||
|
|
||||||
/* *INDENT-OFF* */
|
/* *INDENT-OFF* */
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
extern "C" {
|
extern "C" {
|
||||||
@ -153,11 +151,6 @@ extern void vClearInterruptMask( uint32_t ulMask ) /* __attribute__(( naked )) P
|
|||||||
void vApplicationGenerateTaskRandomPacKey( uint32_t * pulTaskPacKey );
|
void vApplicationGenerateTaskRandomPacKey( uint32_t * pulTaskPacKey );
|
||||||
|
|
||||||
#endif /* configENABLE_PAC */
|
#endif /* configENABLE_PAC */
|
||||||
|
|
||||||
/**
|
|
||||||
* @brief Configures interrupt priorities.
|
|
||||||
*/
|
|
||||||
void vPortConfigureInterruptPriorities( void ) PRIVILEGED_FUNCTION;
|
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
@ -550,6 +550,11 @@ portDONT_DISCARD void vPortSVCHandler_C( uint32_t * pulCallerStackAddress ) PRIV
|
|||||||
extern BaseType_t configWAKE_SECONDARY_CORES( void );
|
extern BaseType_t configWAKE_SECONDARY_CORES( void );
|
||||||
|
|
||||||
#endif /* #if ( configNUMBER_OF_CORES > 1 ) */
|
#endif /* #if ( configNUMBER_OF_CORES > 1 ) */
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Configures interrupt priorities.
|
||||||
|
*/
|
||||||
|
void vPortConfigureInterruptPriorities( void ) PRIVILEGED_FUNCTION;
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
#if ( ( configENABLE_MPU == 1 ) && ( configUSE_MPU_WRAPPERS_V1 == 0 ) )
|
#if ( ( configENABLE_MPU == 1 ) && ( configUSE_MPU_WRAPPERS_V1 == 0 ) )
|
||||||
|
|||||||
@ -30,8 +30,6 @@
|
|||||||
#ifndef PORTMACROCOMMON_H
|
#ifndef PORTMACROCOMMON_H
|
||||||
#define PORTMACROCOMMON_H
|
#define PORTMACROCOMMON_H
|
||||||
|
|
||||||
#include "mpu_wrappers.h"
|
|
||||||
|
|
||||||
/* *INDENT-OFF* */
|
/* *INDENT-OFF* */
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
extern "C" {
|
extern "C" {
|
||||||
@ -153,11 +151,6 @@ extern void vClearInterruptMask( uint32_t ulMask ) /* __attribute__(( naked )) P
|
|||||||
void vApplicationGenerateTaskRandomPacKey( uint32_t * pulTaskPacKey );
|
void vApplicationGenerateTaskRandomPacKey( uint32_t * pulTaskPacKey );
|
||||||
|
|
||||||
#endif /* configENABLE_PAC */
|
#endif /* configENABLE_PAC */
|
||||||
|
|
||||||
/**
|
|
||||||
* @brief Configures interrupt priorities.
|
|
||||||
*/
|
|
||||||
void vPortConfigureInterruptPriorities( void ) PRIVILEGED_FUNCTION;
|
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
@ -550,6 +550,11 @@ portDONT_DISCARD void vPortSVCHandler_C( uint32_t * pulCallerStackAddress ) PRIV
|
|||||||
extern BaseType_t configWAKE_SECONDARY_CORES( void );
|
extern BaseType_t configWAKE_SECONDARY_CORES( void );
|
||||||
|
|
||||||
#endif /* #if ( configNUMBER_OF_CORES > 1 ) */
|
#endif /* #if ( configNUMBER_OF_CORES > 1 ) */
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Configures interrupt priorities.
|
||||||
|
*/
|
||||||
|
void vPortConfigureInterruptPriorities( void ) PRIVILEGED_FUNCTION;
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
#if ( ( configENABLE_MPU == 1 ) && ( configUSE_MPU_WRAPPERS_V1 == 0 ) )
|
#if ( ( configENABLE_MPU == 1 ) && ( configUSE_MPU_WRAPPERS_V1 == 0 ) )
|
||||||
|
|||||||
@ -30,8 +30,6 @@
|
|||||||
#ifndef PORTMACROCOMMON_H
|
#ifndef PORTMACROCOMMON_H
|
||||||
#define PORTMACROCOMMON_H
|
#define PORTMACROCOMMON_H
|
||||||
|
|
||||||
#include "mpu_wrappers.h"
|
|
||||||
|
|
||||||
/* *INDENT-OFF* */
|
/* *INDENT-OFF* */
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
extern "C" {
|
extern "C" {
|
||||||
@ -153,11 +151,6 @@ extern void vClearInterruptMask( uint32_t ulMask ) /* __attribute__(( naked )) P
|
|||||||
void vApplicationGenerateTaskRandomPacKey( uint32_t * pulTaskPacKey );
|
void vApplicationGenerateTaskRandomPacKey( uint32_t * pulTaskPacKey );
|
||||||
|
|
||||||
#endif /* configENABLE_PAC */
|
#endif /* configENABLE_PAC */
|
||||||
|
|
||||||
/**
|
|
||||||
* @brief Configures interrupt priorities.
|
|
||||||
*/
|
|
||||||
void vPortConfigureInterruptPriorities( void ) PRIVILEGED_FUNCTION;
|
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
@ -550,6 +550,11 @@ portDONT_DISCARD void vPortSVCHandler_C( uint32_t * pulCallerStackAddress ) PRIV
|
|||||||
extern BaseType_t configWAKE_SECONDARY_CORES( void );
|
extern BaseType_t configWAKE_SECONDARY_CORES( void );
|
||||||
|
|
||||||
#endif /* #if ( configNUMBER_OF_CORES > 1 ) */
|
#endif /* #if ( configNUMBER_OF_CORES > 1 ) */
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Configures interrupt priorities.
|
||||||
|
*/
|
||||||
|
void vPortConfigureInterruptPriorities( void ) PRIVILEGED_FUNCTION;
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
#if ( ( configENABLE_MPU == 1 ) && ( configUSE_MPU_WRAPPERS_V1 == 0 ) )
|
#if ( ( configENABLE_MPU == 1 ) && ( configUSE_MPU_WRAPPERS_V1 == 0 ) )
|
||||||
|
|||||||
@ -30,8 +30,6 @@
|
|||||||
#ifndef PORTMACROCOMMON_H
|
#ifndef PORTMACROCOMMON_H
|
||||||
#define PORTMACROCOMMON_H
|
#define PORTMACROCOMMON_H
|
||||||
|
|
||||||
#include "mpu_wrappers.h"
|
|
||||||
|
|
||||||
/* *INDENT-OFF* */
|
/* *INDENT-OFF* */
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
extern "C" {
|
extern "C" {
|
||||||
@ -153,11 +151,6 @@ extern void vClearInterruptMask( uint32_t ulMask ) /* __attribute__(( naked )) P
|
|||||||
void vApplicationGenerateTaskRandomPacKey( uint32_t * pulTaskPacKey );
|
void vApplicationGenerateTaskRandomPacKey( uint32_t * pulTaskPacKey );
|
||||||
|
|
||||||
#endif /* configENABLE_PAC */
|
#endif /* configENABLE_PAC */
|
||||||
|
|
||||||
/**
|
|
||||||
* @brief Configures interrupt priorities.
|
|
||||||
*/
|
|
||||||
void vPortConfigureInterruptPriorities( void ) PRIVILEGED_FUNCTION;
|
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
@ -550,6 +550,11 @@ portDONT_DISCARD void vPortSVCHandler_C( uint32_t * pulCallerStackAddress ) PRIV
|
|||||||
extern BaseType_t configWAKE_SECONDARY_CORES( void );
|
extern BaseType_t configWAKE_SECONDARY_CORES( void );
|
||||||
|
|
||||||
#endif /* #if ( configNUMBER_OF_CORES > 1 ) */
|
#endif /* #if ( configNUMBER_OF_CORES > 1 ) */
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Configures interrupt priorities.
|
||||||
|
*/
|
||||||
|
void vPortConfigureInterruptPriorities( void ) PRIVILEGED_FUNCTION;
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
#if ( ( configENABLE_MPU == 1 ) && ( configUSE_MPU_WRAPPERS_V1 == 0 ) )
|
#if ( ( configENABLE_MPU == 1 ) && ( configUSE_MPU_WRAPPERS_V1 == 0 ) )
|
||||||
|
|||||||
@ -30,8 +30,6 @@
|
|||||||
#ifndef PORTMACROCOMMON_H
|
#ifndef PORTMACROCOMMON_H
|
||||||
#define PORTMACROCOMMON_H
|
#define PORTMACROCOMMON_H
|
||||||
|
|
||||||
#include "mpu_wrappers.h"
|
|
||||||
|
|
||||||
/* *INDENT-OFF* */
|
/* *INDENT-OFF* */
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
extern "C" {
|
extern "C" {
|
||||||
@ -153,11 +151,6 @@ extern void vClearInterruptMask( uint32_t ulMask ) /* __attribute__(( naked )) P
|
|||||||
void vApplicationGenerateTaskRandomPacKey( uint32_t * pulTaskPacKey );
|
void vApplicationGenerateTaskRandomPacKey( uint32_t * pulTaskPacKey );
|
||||||
|
|
||||||
#endif /* configENABLE_PAC */
|
#endif /* configENABLE_PAC */
|
||||||
|
|
||||||
/**
|
|
||||||
* @brief Configures interrupt priorities.
|
|
||||||
*/
|
|
||||||
void vPortConfigureInterruptPriorities( void ) PRIVILEGED_FUNCTION;
|
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
@ -550,6 +550,11 @@ portDONT_DISCARD void vPortSVCHandler_C( uint32_t * pulCallerStackAddress ) PRIV
|
|||||||
extern BaseType_t configWAKE_SECONDARY_CORES( void );
|
extern BaseType_t configWAKE_SECONDARY_CORES( void );
|
||||||
|
|
||||||
#endif /* #if ( configNUMBER_OF_CORES > 1 ) */
|
#endif /* #if ( configNUMBER_OF_CORES > 1 ) */
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Configures interrupt priorities.
|
||||||
|
*/
|
||||||
|
void vPortConfigureInterruptPriorities( void ) PRIVILEGED_FUNCTION;
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
#if ( ( configENABLE_MPU == 1 ) && ( configUSE_MPU_WRAPPERS_V1 == 0 ) )
|
#if ( ( configENABLE_MPU == 1 ) && ( configUSE_MPU_WRAPPERS_V1 == 0 ) )
|
||||||
|
|||||||
@ -30,8 +30,6 @@
|
|||||||
#ifndef PORTMACROCOMMON_H
|
#ifndef PORTMACROCOMMON_H
|
||||||
#define PORTMACROCOMMON_H
|
#define PORTMACROCOMMON_H
|
||||||
|
|
||||||
#include "mpu_wrappers.h"
|
|
||||||
|
|
||||||
/* *INDENT-OFF* */
|
/* *INDENT-OFF* */
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
extern "C" {
|
extern "C" {
|
||||||
@ -153,11 +151,6 @@ extern void vClearInterruptMask( uint32_t ulMask ) /* __attribute__(( naked )) P
|
|||||||
void vApplicationGenerateTaskRandomPacKey( uint32_t * pulTaskPacKey );
|
void vApplicationGenerateTaskRandomPacKey( uint32_t * pulTaskPacKey );
|
||||||
|
|
||||||
#endif /* configENABLE_PAC */
|
#endif /* configENABLE_PAC */
|
||||||
|
|
||||||
/**
|
|
||||||
* @brief Configures interrupt priorities.
|
|
||||||
*/
|
|
||||||
void vPortConfigureInterruptPriorities( void ) PRIVILEGED_FUNCTION;
|
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
@ -550,6 +550,11 @@ portDONT_DISCARD void vPortSVCHandler_C( uint32_t * pulCallerStackAddress ) PRIV
|
|||||||
extern BaseType_t configWAKE_SECONDARY_CORES( void );
|
extern BaseType_t configWAKE_SECONDARY_CORES( void );
|
||||||
|
|
||||||
#endif /* #if ( configNUMBER_OF_CORES > 1 ) */
|
#endif /* #if ( configNUMBER_OF_CORES > 1 ) */
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Configures interrupt priorities.
|
||||||
|
*/
|
||||||
|
void vPortConfigureInterruptPriorities( void ) PRIVILEGED_FUNCTION;
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
#if ( ( configENABLE_MPU == 1 ) && ( configUSE_MPU_WRAPPERS_V1 == 0 ) )
|
#if ( ( configENABLE_MPU == 1 ) && ( configUSE_MPU_WRAPPERS_V1 == 0 ) )
|
||||||
|
|||||||
@ -30,8 +30,6 @@
|
|||||||
#ifndef PORTMACROCOMMON_H
|
#ifndef PORTMACROCOMMON_H
|
||||||
#define PORTMACROCOMMON_H
|
#define PORTMACROCOMMON_H
|
||||||
|
|
||||||
#include "mpu_wrappers.h"
|
|
||||||
|
|
||||||
/* *INDENT-OFF* */
|
/* *INDENT-OFF* */
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
extern "C" {
|
extern "C" {
|
||||||
@ -153,11 +151,6 @@ extern void vClearInterruptMask( uint32_t ulMask ) /* __attribute__(( naked )) P
|
|||||||
void vApplicationGenerateTaskRandomPacKey( uint32_t * pulTaskPacKey );
|
void vApplicationGenerateTaskRandomPacKey( uint32_t * pulTaskPacKey );
|
||||||
|
|
||||||
#endif /* configENABLE_PAC */
|
#endif /* configENABLE_PAC */
|
||||||
|
|
||||||
/**
|
|
||||||
* @brief Configures interrupt priorities.
|
|
||||||
*/
|
|
||||||
void vPortConfigureInterruptPriorities( void ) PRIVILEGED_FUNCTION;
|
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
@ -550,6 +550,11 @@ portDONT_DISCARD void vPortSVCHandler_C( uint32_t * pulCallerStackAddress ) PRIV
|
|||||||
extern BaseType_t configWAKE_SECONDARY_CORES( void );
|
extern BaseType_t configWAKE_SECONDARY_CORES( void );
|
||||||
|
|
||||||
#endif /* #if ( configNUMBER_OF_CORES > 1 ) */
|
#endif /* #if ( configNUMBER_OF_CORES > 1 ) */
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Configures interrupt priorities.
|
||||||
|
*/
|
||||||
|
void vPortConfigureInterruptPriorities( void ) PRIVILEGED_FUNCTION;
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
#if ( ( configENABLE_MPU == 1 ) && ( configUSE_MPU_WRAPPERS_V1 == 0 ) )
|
#if ( ( configENABLE_MPU == 1 ) && ( configUSE_MPU_WRAPPERS_V1 == 0 ) )
|
||||||
|
|||||||
@ -30,8 +30,6 @@
|
|||||||
#ifndef PORTMACROCOMMON_H
|
#ifndef PORTMACROCOMMON_H
|
||||||
#define PORTMACROCOMMON_H
|
#define PORTMACROCOMMON_H
|
||||||
|
|
||||||
#include "mpu_wrappers.h"
|
|
||||||
|
|
||||||
/* *INDENT-OFF* */
|
/* *INDENT-OFF* */
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
extern "C" {
|
extern "C" {
|
||||||
@ -153,11 +151,6 @@ extern void vClearInterruptMask( uint32_t ulMask ) /* __attribute__(( naked )) P
|
|||||||
void vApplicationGenerateTaskRandomPacKey( uint32_t * pulTaskPacKey );
|
void vApplicationGenerateTaskRandomPacKey( uint32_t * pulTaskPacKey );
|
||||||
|
|
||||||
#endif /* configENABLE_PAC */
|
#endif /* configENABLE_PAC */
|
||||||
|
|
||||||
/**
|
|
||||||
* @brief Configures interrupt priorities.
|
|
||||||
*/
|
|
||||||
void vPortConfigureInterruptPriorities( void ) PRIVILEGED_FUNCTION;
|
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
@ -550,6 +550,11 @@ portDONT_DISCARD void vPortSVCHandler_C( uint32_t * pulCallerStackAddress ) PRIV
|
|||||||
extern BaseType_t configWAKE_SECONDARY_CORES( void );
|
extern BaseType_t configWAKE_SECONDARY_CORES( void );
|
||||||
|
|
||||||
#endif /* #if ( configNUMBER_OF_CORES > 1 ) */
|
#endif /* #if ( configNUMBER_OF_CORES > 1 ) */
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Configures interrupt priorities.
|
||||||
|
*/
|
||||||
|
void vPortConfigureInterruptPriorities( void ) PRIVILEGED_FUNCTION;
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
#if ( ( configENABLE_MPU == 1 ) && ( configUSE_MPU_WRAPPERS_V1 == 0 ) )
|
#if ( ( configENABLE_MPU == 1 ) && ( configUSE_MPU_WRAPPERS_V1 == 0 ) )
|
||||||
|
|||||||
@ -30,8 +30,6 @@
|
|||||||
#ifndef PORTMACROCOMMON_H
|
#ifndef PORTMACROCOMMON_H
|
||||||
#define PORTMACROCOMMON_H
|
#define PORTMACROCOMMON_H
|
||||||
|
|
||||||
#include "mpu_wrappers.h"
|
|
||||||
|
|
||||||
/* *INDENT-OFF* */
|
/* *INDENT-OFF* */
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
extern "C" {
|
extern "C" {
|
||||||
@ -153,11 +151,6 @@ extern void vClearInterruptMask( uint32_t ulMask ) /* __attribute__(( naked )) P
|
|||||||
void vApplicationGenerateTaskRandomPacKey( uint32_t * pulTaskPacKey );
|
void vApplicationGenerateTaskRandomPacKey( uint32_t * pulTaskPacKey );
|
||||||
|
|
||||||
#endif /* configENABLE_PAC */
|
#endif /* configENABLE_PAC */
|
||||||
|
|
||||||
/**
|
|
||||||
* @brief Configures interrupt priorities.
|
|
||||||
*/
|
|
||||||
void vPortConfigureInterruptPriorities( void ) PRIVILEGED_FUNCTION;
|
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
@ -550,6 +550,11 @@ portDONT_DISCARD void vPortSVCHandler_C( uint32_t * pulCallerStackAddress ) PRIV
|
|||||||
extern BaseType_t configWAKE_SECONDARY_CORES( void );
|
extern BaseType_t configWAKE_SECONDARY_CORES( void );
|
||||||
|
|
||||||
#endif /* #if ( configNUMBER_OF_CORES > 1 ) */
|
#endif /* #if ( configNUMBER_OF_CORES > 1 ) */
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Configures interrupt priorities.
|
||||||
|
*/
|
||||||
|
void vPortConfigureInterruptPriorities( void ) PRIVILEGED_FUNCTION;
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
#if ( ( configENABLE_MPU == 1 ) && ( configUSE_MPU_WRAPPERS_V1 == 0 ) )
|
#if ( ( configENABLE_MPU == 1 ) && ( configUSE_MPU_WRAPPERS_V1 == 0 ) )
|
||||||
|
|||||||
@ -30,8 +30,6 @@
|
|||||||
#ifndef PORTMACROCOMMON_H
|
#ifndef PORTMACROCOMMON_H
|
||||||
#define PORTMACROCOMMON_H
|
#define PORTMACROCOMMON_H
|
||||||
|
|
||||||
#include "mpu_wrappers.h"
|
|
||||||
|
|
||||||
/* *INDENT-OFF* */
|
/* *INDENT-OFF* */
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
extern "C" {
|
extern "C" {
|
||||||
@ -153,11 +151,6 @@ extern void vClearInterruptMask( uint32_t ulMask ) /* __attribute__(( naked )) P
|
|||||||
void vApplicationGenerateTaskRandomPacKey( uint32_t * pulTaskPacKey );
|
void vApplicationGenerateTaskRandomPacKey( uint32_t * pulTaskPacKey );
|
||||||
|
|
||||||
#endif /* configENABLE_PAC */
|
#endif /* configENABLE_PAC */
|
||||||
|
|
||||||
/**
|
|
||||||
* @brief Configures interrupt priorities.
|
|
||||||
*/
|
|
||||||
void vPortConfigureInterruptPriorities( void ) PRIVILEGED_FUNCTION;
|
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
@ -550,6 +550,11 @@ portDONT_DISCARD void vPortSVCHandler_C( uint32_t * pulCallerStackAddress ) PRIV
|
|||||||
extern BaseType_t configWAKE_SECONDARY_CORES( void );
|
extern BaseType_t configWAKE_SECONDARY_CORES( void );
|
||||||
|
|
||||||
#endif /* #if ( configNUMBER_OF_CORES > 1 ) */
|
#endif /* #if ( configNUMBER_OF_CORES > 1 ) */
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Configures interrupt priorities.
|
||||||
|
*/
|
||||||
|
void vPortConfigureInterruptPriorities( void ) PRIVILEGED_FUNCTION;
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
#if ( ( configENABLE_MPU == 1 ) && ( configUSE_MPU_WRAPPERS_V1 == 0 ) )
|
#if ( ( configENABLE_MPU == 1 ) && ( configUSE_MPU_WRAPPERS_V1 == 0 ) )
|
||||||
|
|||||||
@ -30,8 +30,6 @@
|
|||||||
#ifndef PORTMACROCOMMON_H
|
#ifndef PORTMACROCOMMON_H
|
||||||
#define PORTMACROCOMMON_H
|
#define PORTMACROCOMMON_H
|
||||||
|
|
||||||
#include "mpu_wrappers.h"
|
|
||||||
|
|
||||||
/* *INDENT-OFF* */
|
/* *INDENT-OFF* */
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
extern "C" {
|
extern "C" {
|
||||||
@ -153,11 +151,6 @@ extern void vClearInterruptMask( uint32_t ulMask ) /* __attribute__(( naked )) P
|
|||||||
void vApplicationGenerateTaskRandomPacKey( uint32_t * pulTaskPacKey );
|
void vApplicationGenerateTaskRandomPacKey( uint32_t * pulTaskPacKey );
|
||||||
|
|
||||||
#endif /* configENABLE_PAC */
|
#endif /* configENABLE_PAC */
|
||||||
|
|
||||||
/**
|
|
||||||
* @brief Configures interrupt priorities.
|
|
||||||
*/
|
|
||||||
void vPortConfigureInterruptPriorities( void ) PRIVILEGED_FUNCTION;
|
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
@ -550,6 +550,11 @@ portDONT_DISCARD void vPortSVCHandler_C( uint32_t * pulCallerStackAddress ) PRIV
|
|||||||
extern BaseType_t configWAKE_SECONDARY_CORES( void );
|
extern BaseType_t configWAKE_SECONDARY_CORES( void );
|
||||||
|
|
||||||
#endif /* #if ( configNUMBER_OF_CORES > 1 ) */
|
#endif /* #if ( configNUMBER_OF_CORES > 1 ) */
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Configures interrupt priorities.
|
||||||
|
*/
|
||||||
|
void vPortConfigureInterruptPriorities( void ) PRIVILEGED_FUNCTION;
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
#if ( ( configENABLE_MPU == 1 ) && ( configUSE_MPU_WRAPPERS_V1 == 0 ) )
|
#if ( ( configENABLE_MPU == 1 ) && ( configUSE_MPU_WRAPPERS_V1 == 0 ) )
|
||||||
|
|||||||
@ -30,8 +30,6 @@
|
|||||||
#ifndef PORTMACROCOMMON_H
|
#ifndef PORTMACROCOMMON_H
|
||||||
#define PORTMACROCOMMON_H
|
#define PORTMACROCOMMON_H
|
||||||
|
|
||||||
#include "mpu_wrappers.h"
|
|
||||||
|
|
||||||
/* *INDENT-OFF* */
|
/* *INDENT-OFF* */
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
extern "C" {
|
extern "C" {
|
||||||
@ -153,11 +151,6 @@ extern void vClearInterruptMask( uint32_t ulMask ) /* __attribute__(( naked )) P
|
|||||||
void vApplicationGenerateTaskRandomPacKey( uint32_t * pulTaskPacKey );
|
void vApplicationGenerateTaskRandomPacKey( uint32_t * pulTaskPacKey );
|
||||||
|
|
||||||
#endif /* configENABLE_PAC */
|
#endif /* configENABLE_PAC */
|
||||||
|
|
||||||
/**
|
|
||||||
* @brief Configures interrupt priorities.
|
|
||||||
*/
|
|
||||||
void vPortConfigureInterruptPriorities( void ) PRIVILEGED_FUNCTION;
|
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
@ -550,6 +550,11 @@ portDONT_DISCARD void vPortSVCHandler_C( uint32_t * pulCallerStackAddress ) PRIV
|
|||||||
extern BaseType_t configWAKE_SECONDARY_CORES( void );
|
extern BaseType_t configWAKE_SECONDARY_CORES( void );
|
||||||
|
|
||||||
#endif /* #if ( configNUMBER_OF_CORES > 1 ) */
|
#endif /* #if ( configNUMBER_OF_CORES > 1 ) */
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Configures interrupt priorities.
|
||||||
|
*/
|
||||||
|
void vPortConfigureInterruptPriorities( void ) PRIVILEGED_FUNCTION;
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
#if ( ( configENABLE_MPU == 1 ) && ( configUSE_MPU_WRAPPERS_V1 == 0 ) )
|
#if ( ( configENABLE_MPU == 1 ) && ( configUSE_MPU_WRAPPERS_V1 == 0 ) )
|
||||||
|
|||||||
@ -30,8 +30,6 @@
|
|||||||
#ifndef PORTMACROCOMMON_H
|
#ifndef PORTMACROCOMMON_H
|
||||||
#define PORTMACROCOMMON_H
|
#define PORTMACROCOMMON_H
|
||||||
|
|
||||||
#include "mpu_wrappers.h"
|
|
||||||
|
|
||||||
/* *INDENT-OFF* */
|
/* *INDENT-OFF* */
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
extern "C" {
|
extern "C" {
|
||||||
@ -153,11 +151,6 @@ extern void vClearInterruptMask( uint32_t ulMask ) /* __attribute__(( naked )) P
|
|||||||
void vApplicationGenerateTaskRandomPacKey( uint32_t * pulTaskPacKey );
|
void vApplicationGenerateTaskRandomPacKey( uint32_t * pulTaskPacKey );
|
||||||
|
|
||||||
#endif /* configENABLE_PAC */
|
#endif /* configENABLE_PAC */
|
||||||
|
|
||||||
/**
|
|
||||||
* @brief Configures interrupt priorities.
|
|
||||||
*/
|
|
||||||
void vPortConfigureInterruptPriorities( void ) PRIVILEGED_FUNCTION;
|
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
@ -550,6 +550,11 @@ portDONT_DISCARD void vPortSVCHandler_C( uint32_t * pulCallerStackAddress ) PRIV
|
|||||||
extern BaseType_t configWAKE_SECONDARY_CORES( void );
|
extern BaseType_t configWAKE_SECONDARY_CORES( void );
|
||||||
|
|
||||||
#endif /* #if ( configNUMBER_OF_CORES > 1 ) */
|
#endif /* #if ( configNUMBER_OF_CORES > 1 ) */
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Configures interrupt priorities.
|
||||||
|
*/
|
||||||
|
void vPortConfigureInterruptPriorities( void ) PRIVILEGED_FUNCTION;
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
#if ( ( configENABLE_MPU == 1 ) && ( configUSE_MPU_WRAPPERS_V1 == 0 ) )
|
#if ( ( configENABLE_MPU == 1 ) && ( configUSE_MPU_WRAPPERS_V1 == 0 ) )
|
||||||
|
|||||||
@ -30,8 +30,6 @@
|
|||||||
#ifndef PORTMACROCOMMON_H
|
#ifndef PORTMACROCOMMON_H
|
||||||
#define PORTMACROCOMMON_H
|
#define PORTMACROCOMMON_H
|
||||||
|
|
||||||
#include "mpu_wrappers.h"
|
|
||||||
|
|
||||||
/* *INDENT-OFF* */
|
/* *INDENT-OFF* */
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
extern "C" {
|
extern "C" {
|
||||||
@ -153,11 +151,6 @@ extern void vClearInterruptMask( uint32_t ulMask ) /* __attribute__(( naked )) P
|
|||||||
void vApplicationGenerateTaskRandomPacKey( uint32_t * pulTaskPacKey );
|
void vApplicationGenerateTaskRandomPacKey( uint32_t * pulTaskPacKey );
|
||||||
|
|
||||||
#endif /* configENABLE_PAC */
|
#endif /* configENABLE_PAC */
|
||||||
|
|
||||||
/**
|
|
||||||
* @brief Configures interrupt priorities.
|
|
||||||
*/
|
|
||||||
void vPortConfigureInterruptPriorities( void ) PRIVILEGED_FUNCTION;
|
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
@ -550,6 +550,11 @@ portDONT_DISCARD void vPortSVCHandler_C( uint32_t * pulCallerStackAddress ) PRIV
|
|||||||
extern BaseType_t configWAKE_SECONDARY_CORES( void );
|
extern BaseType_t configWAKE_SECONDARY_CORES( void );
|
||||||
|
|
||||||
#endif /* #if ( configNUMBER_OF_CORES > 1 ) */
|
#endif /* #if ( configNUMBER_OF_CORES > 1 ) */
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Configures interrupt priorities.
|
||||||
|
*/
|
||||||
|
void vPortConfigureInterruptPriorities( void ) PRIVILEGED_FUNCTION;
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
#if ( ( configENABLE_MPU == 1 ) && ( configUSE_MPU_WRAPPERS_V1 == 0 ) )
|
#if ( ( configENABLE_MPU == 1 ) && ( configUSE_MPU_WRAPPERS_V1 == 0 ) )
|
||||||
|
|||||||
@ -30,8 +30,6 @@
|
|||||||
#ifndef PORTMACROCOMMON_H
|
#ifndef PORTMACROCOMMON_H
|
||||||
#define PORTMACROCOMMON_H
|
#define PORTMACROCOMMON_H
|
||||||
|
|
||||||
#include "mpu_wrappers.h"
|
|
||||||
|
|
||||||
/* *INDENT-OFF* */
|
/* *INDENT-OFF* */
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
extern "C" {
|
extern "C" {
|
||||||
@ -153,11 +151,6 @@ extern void vClearInterruptMask( uint32_t ulMask ) /* __attribute__(( naked )) P
|
|||||||
void vApplicationGenerateTaskRandomPacKey( uint32_t * pulTaskPacKey );
|
void vApplicationGenerateTaskRandomPacKey( uint32_t * pulTaskPacKey );
|
||||||
|
|
||||||
#endif /* configENABLE_PAC */
|
#endif /* configENABLE_PAC */
|
||||||
|
|
||||||
/**
|
|
||||||
* @brief Configures interrupt priorities.
|
|
||||||
*/
|
|
||||||
void vPortConfigureInterruptPriorities( void ) PRIVILEGED_FUNCTION;
|
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
@ -550,6 +550,11 @@ portDONT_DISCARD void vPortSVCHandler_C( uint32_t * pulCallerStackAddress ) PRIV
|
|||||||
extern BaseType_t configWAKE_SECONDARY_CORES( void );
|
extern BaseType_t configWAKE_SECONDARY_CORES( void );
|
||||||
|
|
||||||
#endif /* #if ( configNUMBER_OF_CORES > 1 ) */
|
#endif /* #if ( configNUMBER_OF_CORES > 1 ) */
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Configures interrupt priorities.
|
||||||
|
*/
|
||||||
|
void vPortConfigureInterruptPriorities( void ) PRIVILEGED_FUNCTION;
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
#if ( ( configENABLE_MPU == 1 ) && ( configUSE_MPU_WRAPPERS_V1 == 0 ) )
|
#if ( ( configENABLE_MPU == 1 ) && ( configUSE_MPU_WRAPPERS_V1 == 0 ) )
|
||||||
|
|||||||
@ -30,8 +30,6 @@
|
|||||||
#ifndef PORTMACROCOMMON_H
|
#ifndef PORTMACROCOMMON_H
|
||||||
#define PORTMACROCOMMON_H
|
#define PORTMACROCOMMON_H
|
||||||
|
|
||||||
#include "mpu_wrappers.h"
|
|
||||||
|
|
||||||
/* *INDENT-OFF* */
|
/* *INDENT-OFF* */
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
extern "C" {
|
extern "C" {
|
||||||
@ -153,11 +151,6 @@ extern void vClearInterruptMask( uint32_t ulMask ) /* __attribute__(( naked )) P
|
|||||||
void vApplicationGenerateTaskRandomPacKey( uint32_t * pulTaskPacKey );
|
void vApplicationGenerateTaskRandomPacKey( uint32_t * pulTaskPacKey );
|
||||||
|
|
||||||
#endif /* configENABLE_PAC */
|
#endif /* configENABLE_PAC */
|
||||||
|
|
||||||
/**
|
|
||||||
* @brief Configures interrupt priorities.
|
|
||||||
*/
|
|
||||||
void vPortConfigureInterruptPriorities( void ) PRIVILEGED_FUNCTION;
|
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
@ -550,6 +550,11 @@ portDONT_DISCARD void vPortSVCHandler_C( uint32_t * pulCallerStackAddress ) PRIV
|
|||||||
extern BaseType_t configWAKE_SECONDARY_CORES( void );
|
extern BaseType_t configWAKE_SECONDARY_CORES( void );
|
||||||
|
|
||||||
#endif /* #if ( configNUMBER_OF_CORES > 1 ) */
|
#endif /* #if ( configNUMBER_OF_CORES > 1 ) */
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Configures interrupt priorities.
|
||||||
|
*/
|
||||||
|
void vPortConfigureInterruptPriorities( void ) PRIVILEGED_FUNCTION;
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
#if ( ( configENABLE_MPU == 1 ) && ( configUSE_MPU_WRAPPERS_V1 == 0 ) )
|
#if ( ( configENABLE_MPU == 1 ) && ( configUSE_MPU_WRAPPERS_V1 == 0 ) )
|
||||||
|
|||||||
@ -30,8 +30,6 @@
|
|||||||
#ifndef PORTMACROCOMMON_H
|
#ifndef PORTMACROCOMMON_H
|
||||||
#define PORTMACROCOMMON_H
|
#define PORTMACROCOMMON_H
|
||||||
|
|
||||||
#include "mpu_wrappers.h"
|
|
||||||
|
|
||||||
/* *INDENT-OFF* */
|
/* *INDENT-OFF* */
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
extern "C" {
|
extern "C" {
|
||||||
@ -153,11 +151,6 @@ extern void vClearInterruptMask( uint32_t ulMask ) /* __attribute__(( naked )) P
|
|||||||
void vApplicationGenerateTaskRandomPacKey( uint32_t * pulTaskPacKey );
|
void vApplicationGenerateTaskRandomPacKey( uint32_t * pulTaskPacKey );
|
||||||
|
|
||||||
#endif /* configENABLE_PAC */
|
#endif /* configENABLE_PAC */
|
||||||
|
|
||||||
/**
|
|
||||||
* @brief Configures interrupt priorities.
|
|
||||||
*/
|
|
||||||
void vPortConfigureInterruptPriorities( void ) PRIVILEGED_FUNCTION;
|
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
@ -550,6 +550,11 @@ portDONT_DISCARD void vPortSVCHandler_C( uint32_t * pulCallerStackAddress ) PRIV
|
|||||||
extern BaseType_t configWAKE_SECONDARY_CORES( void );
|
extern BaseType_t configWAKE_SECONDARY_CORES( void );
|
||||||
|
|
||||||
#endif /* #if ( configNUMBER_OF_CORES > 1 ) */
|
#endif /* #if ( configNUMBER_OF_CORES > 1 ) */
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Configures interrupt priorities.
|
||||||
|
*/
|
||||||
|
void vPortConfigureInterruptPriorities( void ) PRIVILEGED_FUNCTION;
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
#if ( ( configENABLE_MPU == 1 ) && ( configUSE_MPU_WRAPPERS_V1 == 0 ) )
|
#if ( ( configENABLE_MPU == 1 ) && ( configUSE_MPU_WRAPPERS_V1 == 0 ) )
|
||||||
|
|||||||
@ -30,8 +30,6 @@
|
|||||||
#ifndef PORTMACROCOMMON_H
|
#ifndef PORTMACROCOMMON_H
|
||||||
#define PORTMACROCOMMON_H
|
#define PORTMACROCOMMON_H
|
||||||
|
|
||||||
#include "mpu_wrappers.h"
|
|
||||||
|
|
||||||
/* *INDENT-OFF* */
|
/* *INDENT-OFF* */
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
extern "C" {
|
extern "C" {
|
||||||
@ -153,11 +151,6 @@ extern void vClearInterruptMask( uint32_t ulMask ) /* __attribute__(( naked )) P
|
|||||||
void vApplicationGenerateTaskRandomPacKey( uint32_t * pulTaskPacKey );
|
void vApplicationGenerateTaskRandomPacKey( uint32_t * pulTaskPacKey );
|
||||||
|
|
||||||
#endif /* configENABLE_PAC */
|
#endif /* configENABLE_PAC */
|
||||||
|
|
||||||
/**
|
|
||||||
* @brief Configures interrupt priorities.
|
|
||||||
*/
|
|
||||||
void vPortConfigureInterruptPriorities( void ) PRIVILEGED_FUNCTION;
|
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
@ -550,6 +550,11 @@ portDONT_DISCARD void vPortSVCHandler_C( uint32_t * pulCallerStackAddress ) PRIV
|
|||||||
extern BaseType_t configWAKE_SECONDARY_CORES( void );
|
extern BaseType_t configWAKE_SECONDARY_CORES( void );
|
||||||
|
|
||||||
#endif /* #if ( configNUMBER_OF_CORES > 1 ) */
|
#endif /* #if ( configNUMBER_OF_CORES > 1 ) */
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Configures interrupt priorities.
|
||||||
|
*/
|
||||||
|
void vPortConfigureInterruptPriorities( void ) PRIVILEGED_FUNCTION;
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
#if ( ( configENABLE_MPU == 1 ) && ( configUSE_MPU_WRAPPERS_V1 == 0 ) )
|
#if ( ( configENABLE_MPU == 1 ) && ( configUSE_MPU_WRAPPERS_V1 == 0 ) )
|
||||||
|
|||||||
@ -30,8 +30,6 @@
|
|||||||
#ifndef PORTMACROCOMMON_H
|
#ifndef PORTMACROCOMMON_H
|
||||||
#define PORTMACROCOMMON_H
|
#define PORTMACROCOMMON_H
|
||||||
|
|
||||||
#include "mpu_wrappers.h"
|
|
||||||
|
|
||||||
/* *INDENT-OFF* */
|
/* *INDENT-OFF* */
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
extern "C" {
|
extern "C" {
|
||||||
@ -153,11 +151,6 @@ extern void vClearInterruptMask( uint32_t ulMask ) /* __attribute__(( naked )) P
|
|||||||
void vApplicationGenerateTaskRandomPacKey( uint32_t * pulTaskPacKey );
|
void vApplicationGenerateTaskRandomPacKey( uint32_t * pulTaskPacKey );
|
||||||
|
|
||||||
#endif /* configENABLE_PAC */
|
#endif /* configENABLE_PAC */
|
||||||
|
|
||||||
/**
|
|
||||||
* @brief Configures interrupt priorities.
|
|
||||||
*/
|
|
||||||
void vPortConfigureInterruptPriorities( void ) PRIVILEGED_FUNCTION;
|
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
@ -550,6 +550,11 @@ portDONT_DISCARD void vPortSVCHandler_C( uint32_t * pulCallerStackAddress ) PRIV
|
|||||||
extern BaseType_t configWAKE_SECONDARY_CORES( void );
|
extern BaseType_t configWAKE_SECONDARY_CORES( void );
|
||||||
|
|
||||||
#endif /* #if ( configNUMBER_OF_CORES > 1 ) */
|
#endif /* #if ( configNUMBER_OF_CORES > 1 ) */
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Configures interrupt priorities.
|
||||||
|
*/
|
||||||
|
void vPortConfigureInterruptPriorities( void ) PRIVILEGED_FUNCTION;
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
#if ( ( configENABLE_MPU == 1 ) && ( configUSE_MPU_WRAPPERS_V1 == 0 ) )
|
#if ( ( configENABLE_MPU == 1 ) && ( configUSE_MPU_WRAPPERS_V1 == 0 ) )
|
||||||
|
|||||||
@ -30,8 +30,6 @@
|
|||||||
#ifndef PORTMACROCOMMON_H
|
#ifndef PORTMACROCOMMON_H
|
||||||
#define PORTMACROCOMMON_H
|
#define PORTMACROCOMMON_H
|
||||||
|
|
||||||
#include "mpu_wrappers.h"
|
|
||||||
|
|
||||||
/* *INDENT-OFF* */
|
/* *INDENT-OFF* */
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
extern "C" {
|
extern "C" {
|
||||||
@ -153,11 +151,6 @@ extern void vClearInterruptMask( uint32_t ulMask ) /* __attribute__(( naked )) P
|
|||||||
void vApplicationGenerateTaskRandomPacKey( uint32_t * pulTaskPacKey );
|
void vApplicationGenerateTaskRandomPacKey( uint32_t * pulTaskPacKey );
|
||||||
|
|
||||||
#endif /* configENABLE_PAC */
|
#endif /* configENABLE_PAC */
|
||||||
|
|
||||||
/**
|
|
||||||
* @brief Configures interrupt priorities.
|
|
||||||
*/
|
|
||||||
void vPortConfigureInterruptPriorities( void ) PRIVILEGED_FUNCTION;
|
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
@ -550,6 +550,11 @@ portDONT_DISCARD void vPortSVCHandler_C( uint32_t * pulCallerStackAddress ) PRIV
|
|||||||
extern BaseType_t configWAKE_SECONDARY_CORES( void );
|
extern BaseType_t configWAKE_SECONDARY_CORES( void );
|
||||||
|
|
||||||
#endif /* #if ( configNUMBER_OF_CORES > 1 ) */
|
#endif /* #if ( configNUMBER_OF_CORES > 1 ) */
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Configures interrupt priorities.
|
||||||
|
*/
|
||||||
|
void vPortConfigureInterruptPriorities( void ) PRIVILEGED_FUNCTION;
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
#if ( ( configENABLE_MPU == 1 ) && ( configUSE_MPU_WRAPPERS_V1 == 0 ) )
|
#if ( ( configENABLE_MPU == 1 ) && ( configUSE_MPU_WRAPPERS_V1 == 0 ) )
|
||||||
|
|||||||
@ -30,8 +30,6 @@
|
|||||||
#ifndef PORTMACROCOMMON_H
|
#ifndef PORTMACROCOMMON_H
|
||||||
#define PORTMACROCOMMON_H
|
#define PORTMACROCOMMON_H
|
||||||
|
|
||||||
#include "mpu_wrappers.h"
|
|
||||||
|
|
||||||
/* *INDENT-OFF* */
|
/* *INDENT-OFF* */
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
extern "C" {
|
extern "C" {
|
||||||
@ -153,11 +151,6 @@ extern void vClearInterruptMask( uint32_t ulMask ) /* __attribute__(( naked )) P
|
|||||||
void vApplicationGenerateTaskRandomPacKey( uint32_t * pulTaskPacKey );
|
void vApplicationGenerateTaskRandomPacKey( uint32_t * pulTaskPacKey );
|
||||||
|
|
||||||
#endif /* configENABLE_PAC */
|
#endif /* configENABLE_PAC */
|
||||||
|
|
||||||
/**
|
|
||||||
* @brief Configures interrupt priorities.
|
|
||||||
*/
|
|
||||||
void vPortConfigureInterruptPriorities( void ) PRIVILEGED_FUNCTION;
|
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
@ -550,6 +550,11 @@ portDONT_DISCARD void vPortSVCHandler_C( uint32_t * pulCallerStackAddress ) PRIV
|
|||||||
extern BaseType_t configWAKE_SECONDARY_CORES( void );
|
extern BaseType_t configWAKE_SECONDARY_CORES( void );
|
||||||
|
|
||||||
#endif /* #if ( configNUMBER_OF_CORES > 1 ) */
|
#endif /* #if ( configNUMBER_OF_CORES > 1 ) */
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Configures interrupt priorities.
|
||||||
|
*/
|
||||||
|
void vPortConfigureInterruptPriorities( void ) PRIVILEGED_FUNCTION;
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
#if ( ( configENABLE_MPU == 1 ) && ( configUSE_MPU_WRAPPERS_V1 == 0 ) )
|
#if ( ( configENABLE_MPU == 1 ) && ( configUSE_MPU_WRAPPERS_V1 == 0 ) )
|
||||||
|
|||||||
@ -30,8 +30,6 @@
|
|||||||
#ifndef PORTMACROCOMMON_H
|
#ifndef PORTMACROCOMMON_H
|
||||||
#define PORTMACROCOMMON_H
|
#define PORTMACROCOMMON_H
|
||||||
|
|
||||||
#include "mpu_wrappers.h"
|
|
||||||
|
|
||||||
/* *INDENT-OFF* */
|
/* *INDENT-OFF* */
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
extern "C" {
|
extern "C" {
|
||||||
@ -153,11 +151,6 @@ extern void vClearInterruptMask( uint32_t ulMask ) /* __attribute__(( naked )) P
|
|||||||
void vApplicationGenerateTaskRandomPacKey( uint32_t * pulTaskPacKey );
|
void vApplicationGenerateTaskRandomPacKey( uint32_t * pulTaskPacKey );
|
||||||
|
|
||||||
#endif /* configENABLE_PAC */
|
#endif /* configENABLE_PAC */
|
||||||
|
|
||||||
/**
|
|
||||||
* @brief Configures interrupt priorities.
|
|
||||||
*/
|
|
||||||
void vPortConfigureInterruptPriorities( void ) PRIVILEGED_FUNCTION;
|
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user