From 17766b36ed77f1b97b404b47173986749fd67a7d Mon Sep 17 00:00:00 2001 From: yuanjiong Date: Tue, 26 Oct 2021 17:03:29 +0800 Subject: [PATCH] :wrench: update stack size --- components/modules/ai/who_cat_face_detection.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/modules/ai/who_cat_face_detection.cpp b/components/modules/ai/who_cat_face_detection.cpp index 1ce082d..472c9bc 100644 --- a/components/modules/ai/who_cat_face_detection.cpp +++ b/components/modules/ai/who_cat_face_detection.cpp @@ -80,7 +80,7 @@ void register_cat_face_detection(const QueueHandle_t frame_i, xQueueResult = result; gReturnFB = camera_fb_return; - xTaskCreatePinnedToCore(task_process_handler, "cat_face_process", 2 * 1024, NULL, 5, NULL, 1); + xTaskCreatePinnedToCore(task_process_handler, "cat_face_process", 3 * 1024, NULL, 5, NULL, 1); if (xQueueEvent) xTaskCreatePinnedToCore(task_event_handler, "cat_face_event", 1 * 1024, NULL, 5, NULL, 1); }