Skip to content

Commit 310ace5

Browse files
authored
Add configuration include to secure_heap.c (#1141)
Add configuration include to secure_heap.c Enables actually changing the size of the secure heal
1 parent 93e8199 commit 310ace5

File tree

11 files changed

+33
-0
lines changed

11 files changed

+33
-0
lines changed

portable/ARMv8M/secure/heap/secure_heap.c

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,9 @@
2929
/* Standard includes. */
3030
#include <stdint.h>
3131

32+
/* Configuration includes. */
33+
#include "FreeRTOSConfig.h"
34+
3235
/* Secure context heap includes. */
3336
#include "secure_heap.h"
3437

portable/GCC/ARM_CM23/secure/secure_heap.c

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,9 @@
2929
/* Standard includes. */
3030
#include <stdint.h>
3131

32+
/* Configuration includes. */
33+
#include "FreeRTOSConfig.h"
34+
3235
/* Secure context heap includes. */
3336
#include "secure_heap.h"
3437

portable/GCC/ARM_CM33/secure/secure_heap.c

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,9 @@
2929
/* Standard includes. */
3030
#include <stdint.h>
3131

32+
/* Configuration includes. */
33+
#include "FreeRTOSConfig.h"
34+
3235
/* Secure context heap includes. */
3336
#include "secure_heap.h"
3437

portable/GCC/ARM_CM35P/secure/secure_heap.c

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,9 @@
2929
/* Standard includes. */
3030
#include <stdint.h>
3131

32+
/* Configuration includes. */
33+
#include "FreeRTOSConfig.h"
34+
3235
/* Secure context heap includes. */
3336
#include "secure_heap.h"
3437

portable/GCC/ARM_CM55/secure/secure_heap.c

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,9 @@
2929
/* Standard includes. */
3030
#include <stdint.h>
3131

32+
/* Configuration includes. */
33+
#include "FreeRTOSConfig.h"
34+
3235
/* Secure context heap includes. */
3336
#include "secure_heap.h"
3437

portable/GCC/ARM_CM85/secure/secure_heap.c

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,9 @@
2929
/* Standard includes. */
3030
#include <stdint.h>
3131

32+
/* Configuration includes. */
33+
#include "FreeRTOSConfig.h"
34+
3235
/* Secure context heap includes. */
3336
#include "secure_heap.h"
3437

portable/IAR/ARM_CM23/secure/secure_heap.c

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,9 @@
2929
/* Standard includes. */
3030
#include <stdint.h>
3131

32+
/* Configuration includes. */
33+
#include "FreeRTOSConfig.h"
34+
3235
/* Secure context heap includes. */
3336
#include "secure_heap.h"
3437

portable/IAR/ARM_CM33/secure/secure_heap.c

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,9 @@
2929
/* Standard includes. */
3030
#include <stdint.h>
3131

32+
/* Configuration includes. */
33+
#include "FreeRTOSConfig.h"
34+
3235
/* Secure context heap includes. */
3336
#include "secure_heap.h"
3437

portable/IAR/ARM_CM35P/secure/secure_heap.c

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,9 @@
2929
/* Standard includes. */
3030
#include <stdint.h>
3131

32+
/* Configuration includes. */
33+
#include "FreeRTOSConfig.h"
34+
3235
/* Secure context heap includes. */
3336
#include "secure_heap.h"
3437

portable/IAR/ARM_CM55/secure/secure_heap.c

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,9 @@
2929
/* Standard includes. */
3030
#include <stdint.h>
3131

32+
/* Configuration includes. */
33+
#include "FreeRTOSConfig.h"
34+
3235
/* Secure context heap includes. */
3336
#include "secure_heap.h"
3437

portable/IAR/ARM_CM85/secure/secure_heap.c

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,9 @@
2929
/* Standard includes. */
3030
#include <stdint.h>
3131

32+
/* Configuration includes. */
33+
#include "FreeRTOSConfig.h"
34+
3235
/* Secure context heap includes. */
3336
#include "secure_heap.h"
3437

0 commit comments

Comments
 (0)