From dd13de1c4c15786d3812130e8a4fffca627c9c15 Mon Sep 17 00:00:00 2001 From: scgan Date: Thu, 21 Sep 2023 16:19:51 +0800 Subject: [PATCH] increase stack size for camera task --- components/modules/camera/who_camera.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/modules/camera/who_camera.c b/components/modules/camera/who_camera.c index 778ded1..707d11a 100644 --- a/components/modules/camera/who_camera.c +++ b/components/modules/camera/who_camera.c @@ -83,5 +83,5 @@ void register_camera(const pixformat_t pixel_fromat, } xQueueFrameO = frame_o; - xTaskCreatePinnedToCore(task_process_handler, TAG, 2 * 1024, NULL, 5, NULL, 1); + xTaskCreatePinnedToCore(task_process_handler, TAG, 3 * 1024, NULL, 5, NULL, 1); }