Skip to content

Commit 181004c

Browse files
committed
increase camera task stack size
1 parent 2368d94 commit 181004c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Kconfig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -187,7 +187,7 @@ menu "Camera configuration"
187187

188188
config CAMERA_TASK_STACK_SIZE
189189
int "CAM task stack size"
190-
default 2048
190+
default 4096
191191
help
192192
Camera task stack size
193193

driver/cam_hal.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
#if CONFIG_CAMERA_TASK_STACK_SIZE
3838
#define CAM_TASK_STACK CONFIG_CAMERA_TASK_STACK_SIZE
3939
#else
40-
#define CAM_TASK_STACK (2*1024)
40+
#define CAM_TASK_STACK (4*1024)
4141
#endif
4242

4343
static const char *TAG = "cam_hal";

0 commit comments

Comments
 (0)