From a4aaf4e1a13e839dfe8b57675a3ed42b42c4a2e4 Mon Sep 17 00:00:00 2001 From: Oliver Mueller Date: Mon, 9 Sep 2024 21:15:24 +0200 Subject: [PATCH] Add configuration include to secure_heap.c Enables actually changing the size of the secure heal --- portable/ARMv8M/secure/heap/secure_heap.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/portable/ARMv8M/secure/heap/secure_heap.c b/portable/ARMv8M/secure/heap/secure_heap.c index f77320ed2..6843b11b6 100644 --- a/portable/ARMv8M/secure/heap/secure_heap.c +++ b/portable/ARMv8M/secure/heap/secure_heap.c @@ -29,6 +29,9 @@ /* Standard includes. */ #include +/* Configuration includes */ +#include "FreeRTOSConfig.h" + /* Secure context heap includes. */ #include "secure_heap.h"