From 9f08cc64e3bc352e60ec03f25ab5df1b95f003b6 Mon Sep 17 00:00:00 2001 From: gaurav-aws Date: Wed, 20 Feb 2019 00:40:46 +0000 Subject: [PATCH] Set default value of configRUN_FREERTOS_SECURE_ONLY to 0. git-svn-id: https://svn.code.sf.net/p/freertos/code/trunk@2638 1d2547de-c912-0410-9cb9-b8ca96c0e9e2 --- FreeRTOS/Source/include/FreeRTOS.h | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/FreeRTOS/Source/include/FreeRTOS.h b/FreeRTOS/Source/include/FreeRTOS.h index 73f28fe54..6e3deed52 100644 --- a/FreeRTOS/Source/include/FreeRTOS.h +++ b/FreeRTOS/Source/include/FreeRTOS.h @@ -976,6 +976,12 @@ This is currently used in ARMv8M ports. */ #define configENABLE_TRUSTZONE 1 #endif +/* Set configRUN_FREERTOS_SECURE_ONLY to 1 to run the FreeRTOS ARMv8M port on +the Secure Side only. */ +#ifndef configRUN_FREERTOS_SECURE_ONLY + #define configRUN_FREERTOS_SECURE_ONLY 0 +#endif + /* Sometimes the FreeRTOSConfig.h settings only allow a task to be created using * dynamically allocated RAM, in which case when any task is deleted it is known * that both the task's stack and TCB need to be freed. Sometimes the -- 2.39.2