aboutsummaryrefslogtreecommitdiff
path: root/applications/freertos
diff options
context:
space:
mode:
Diffstat (limited to 'applications/freertos')
-rw-r--r--applications/freertos/CMakeLists.txt2
-rw-r--r--applications/freertos/main.cpp2
2 files changed, 2 insertions, 2 deletions
diff --git a/applications/freertos/CMakeLists.txt b/applications/freertos/CMakeLists.txt
index 9581fe5..74cbe45 100644
--- a/applications/freertos/CMakeLists.txt
+++ b/applications/freertos/CMakeLists.txt
@@ -28,6 +28,6 @@ ethosu_add_executable_test(freertos PRIVATE
# Use the fast memory to support both 11.12.57 and 11.13.x release
# of the FVP
-# The size is defined to force the .bss.NoInit to be placed in DDR
+# The size is defined to force the .bss.tensor_arena to be placed in DDR
target_compile_definitions(
freertos PRIVATE ETHOSU_FAST_MEMORY_SIZE=0xa0000)
diff --git a/applications/freertos/main.cpp b/applications/freertos/main.cpp
index 4e58646..6f92faf 100644
--- a/applications/freertos/main.cpp
+++ b/applications/freertos/main.cpp
@@ -41,7 +41,7 @@ using namespace InferenceProcess;
#define TENSOR_ARENA_SIZE 0xa0000
-__attribute__((section(".bss.NoInit"), aligned(16))) uint8_t inferenceProcessTensorArena[TENSOR_ARENA_SIZE];
+__attribute__((section(".bss.tensor_arena"), aligned(16))) uint8_t inferenceProcessTensorArena[TENSOR_ARENA_SIZE];
namespace {