Skip to content

Commit

Permalink
Add configuration include to secure_heap.c (#1141)
Browse files Browse the repository at this point in the history
Add configuration include to secure_heap.c

Enables actually changing the size of the secure heal
  • Loading branch information
Olstyle committed Sep 10, 2024
1 parent 93e8199 commit 310ace5
Show file tree
Hide file tree
Showing 11 changed files with 33 additions and 0 deletions.
3 changes: 3 additions & 0 deletions portable/ARMv8M/secure/heap/secure_heap.c
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,9 @@
/* Standard includes. */
#include <stdint.h>

/* Configuration includes. */
#include "FreeRTOSConfig.h"

/* Secure context heap includes. */
#include "secure_heap.h"

Expand Down
3 changes: 3 additions & 0 deletions portable/GCC/ARM_CM23/secure/secure_heap.c
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,9 @@
/* Standard includes. */
#include <stdint.h>

/* Configuration includes. */
#include "FreeRTOSConfig.h"

/* Secure context heap includes. */
#include "secure_heap.h"

Expand Down
3 changes: 3 additions & 0 deletions portable/GCC/ARM_CM33/secure/secure_heap.c
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,9 @@
/* Standard includes. */
#include <stdint.h>

/* Configuration includes. */
#include "FreeRTOSConfig.h"

/* Secure context heap includes. */
#include "secure_heap.h"

Expand Down
3 changes: 3 additions & 0 deletions portable/GCC/ARM_CM35P/secure/secure_heap.c
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,9 @@
/* Standard includes. */
#include <stdint.h>

/* Configuration includes. */
#include "FreeRTOSConfig.h"

/* Secure context heap includes. */
#include "secure_heap.h"

Expand Down
3 changes: 3 additions & 0 deletions portable/GCC/ARM_CM55/secure/secure_heap.c
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,9 @@
/* Standard includes. */
#include <stdint.h>

/* Configuration includes. */
#include "FreeRTOSConfig.h"

/* Secure context heap includes. */
#include "secure_heap.h"

Expand Down
3 changes: 3 additions & 0 deletions portable/GCC/ARM_CM85/secure/secure_heap.c
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,9 @@
/* Standard includes. */
#include <stdint.h>

/* Configuration includes. */
#include "FreeRTOSConfig.h"

/* Secure context heap includes. */
#include "secure_heap.h"

Expand Down
3 changes: 3 additions & 0 deletions portable/IAR/ARM_CM23/secure/secure_heap.c
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,9 @@
/* Standard includes. */
#include <stdint.h>

/* Configuration includes. */
#include "FreeRTOSConfig.h"

/* Secure context heap includes. */
#include "secure_heap.h"

Expand Down
3 changes: 3 additions & 0 deletions portable/IAR/ARM_CM33/secure/secure_heap.c
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,9 @@
/* Standard includes. */
#include <stdint.h>

/* Configuration includes. */
#include "FreeRTOSConfig.h"

/* Secure context heap includes. */
#include "secure_heap.h"

Expand Down
3 changes: 3 additions & 0 deletions portable/IAR/ARM_CM35P/secure/secure_heap.c
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,9 @@
/* Standard includes. */
#include <stdint.h>

/* Configuration includes. */
#include "FreeRTOSConfig.h"

/* Secure context heap includes. */
#include "secure_heap.h"

Expand Down
3 changes: 3 additions & 0 deletions portable/IAR/ARM_CM55/secure/secure_heap.c
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,9 @@
/* Standard includes. */
#include <stdint.h>

/* Configuration includes. */
#include "FreeRTOSConfig.h"

/* Secure context heap includes. */
#include "secure_heap.h"

Expand Down
3 changes: 3 additions & 0 deletions portable/IAR/ARM_CM85/secure/secure_heap.c
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,9 @@
/* Standard includes. */
#include <stdint.h>

/* Configuration includes. */
#include "FreeRTOSConfig.h"

/* Secure context heap includes. */
#include "secure_heap.h"

Expand Down

0 comments on commit 310ace5

Please sign in to comment.