aboutsummaryrefslogtreecommitdiff
path: root/applications/freertos/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'applications/freertos/main.cpp')
-rw-r--r--applications/freertos/main.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/applications/freertos/main.cpp b/applications/freertos/main.cpp
index 0010b70..5abcca2 100644
--- a/applications/freertos/main.cpp
+++ b/applications/freertos/main.cpp
@@ -232,7 +232,7 @@ int main() {
// Create inferenceProcess tasks to process the queued jobs
for (int n = 0; n < NUM_INFERENCE_TASKS; n++) {
taskParams[n] = ProcessTaskParams(inferenceProcessQueue, inferenceProcessTensorArena[n], arenaSize);
- ret = xTaskCreate(inferenceProcessTask, "inferenceProcessTask", 3 * 1024, &taskParams[n], 3, nullptr);
+ ret = xTaskCreate(inferenceProcessTask, "inferenceProcessTask", 8 * 1024, &taskParams[n], 3, nullptr);
if (ret != pdPASS) {
printf("FreeRTOS: Failed to create 'inferenceProcessTask%i'\n", n);
exit(1);