aboutsummaryrefslogtreecommitdiff
path: root/applications/message_handler/main.cpp
diff options
context:
space:
mode:
authorDavide Grohmann <davide.grohmann@arm.com>2022-06-15 11:20:41 +0200
committerKristofer Jonsson <kristofer.jonsson@arm.com>2022-08-25 09:13:36 +0000
commitf4379e99431e5b027b0d5942ccff56af6bfe82b1 (patch)
tree793dbd611483e6850dfc29db3048f92975800bf8 /applications/message_handler/main.cpp
parent05dd24dd63fcd0a2f8d6a0db1a7bf740ee968a00 (diff)
downloadethos-u-core-platform-f4379e99431e5b027b0d5942ccff56af6bfe82b1.tar.gz
Add negative testing to message_handler
Also restructure the scatter file to not be constrained of the artificial 512k size limit of the APP_IMAGE region. Add missing sections in DDR for both scatter file and linker script. Change-Id: I3d9bc8aeae1b1c11ab994276be64a2850cc23f8e
Diffstat (limited to 'applications/message_handler/main.cpp')
-rw-r--r--applications/message_handler/main.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/applications/message_handler/main.cpp b/applications/message_handler/main.cpp
index caa778b..4bd721e 100644
--- a/applications/message_handler/main.cpp
+++ b/applications/message_handler/main.cpp
@@ -93,7 +93,7 @@ struct TaskParams {
TaskParams() :
messageNotify(xSemaphoreCreateBinary()),
inferenceInputQueue(std::make_shared<Queue<ethosu_core_inference_req>>()),
- inferenceOutputQueue(xQueueCreate(10, sizeof(ethosu_core_inference_rsp))),
+ inferenceOutputQueue(xQueueCreate(5, sizeof(ethosu_core_inference_rsp))),
networks(std::make_shared<WithIndexedNetworks>()) {}
SemaphoreHandle_t messageNotify;