increase stack size for camera task

pull/214/head
scgan 2023-09-21 16:19:51 +08:00
parent b454739d3e
commit dd13de1c4c
1 changed files with 1 additions and 1 deletions

View File

@ -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);
}