From 086d52f9d31677986c9df7721b488fdff86ade69 Mon Sep 17 00:00:00 2001 From: RichardBarry <3073890+RichardBarry@users.noreply.github.com> Date: Sat, 20 Mar 2021 11:58:07 -0700 Subject: [PATCH] A recent change in the FreeRTOS/FreeRTOS hub repo (which submodules this repo) introduced use of a new compile time constant configRUN_ADDITIONAL_TESTS. This check in adds a default for the constant that will be used in builds to which it does not apply. (#266) --- include/FreeRTOS.h | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/include/FreeRTOS.h b/include/FreeRTOS.h index 957325875..6c3e82646 100644 --- a/include/FreeRTOS.h +++ b/include/FreeRTOS.h @@ -1059,6 +1059,11 @@ #define configRUN_FREERTOS_SECURE_ONLY 0 #endif +#ifndef configRUN_ADDITIONAL_TESTS + #define configRUN_ADDITIONAL_TESTS 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