increase stack size of who_camera task

program was crashing with "1 * 1024" stack size, it was changed to "2 * 1024" but would still crash during some conditions.  Changed to "3 * 1024" and the task does not experience a stack overflow under any circumstances.
pull/250/head
Nikolaus Spence 2023-03-27 11:39:57 -05:00 committed by GitHub
parent 5497ff27a2
commit 7b780e6813
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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);
}