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
parent
5497ff27a2
commit
7b780e6813
|
@ -83,5 +83,5 @@ void register_camera(const pixformat_t pixel_fromat,
|
||||||
}
|
}
|
||||||
|
|
||||||
xQueueFrameO = frame_o;
|
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);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue