Skip to content

Commit a60c650

Browse files
authored
Merge pull request #788 from RubenKelevra/increase_stack_size
increase camera task stack size
2 parents f015004 + 1077c47 commit a60c650

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
@@ -45,7 +45,7 @@
4545
#if CONFIG_CAMERA_TASK_STACK_SIZE
4646
#define CAM_TASK_STACK CONFIG_CAMERA_TASK_STACK_SIZE
4747
#else
48-
#define CAM_TASK_STACK (2*1024)
48+
#define CAM_TASK_STACK (4*1024)
4949
#endif
5050

5151
static const char *TAG = "cam_hal";

0 commit comments

Comments
 (0)