Skip to content
This repository was archived by the owner on Sep 16, 2024. It is now read-only.

Commit 94bb382

Browse files
author
iwahdan88
committed
modusocket: increased stack size of task "SockOps"
1 parent 234a35e commit 94bb382

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

esp32/mods/modusocket.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ SemaphoreHandle_t xSocketOpsSem;
110110
void modusocket_pre_init (void) {
111111

112112
// Create a Task to handle Socket Async ops
113-
xTaskCreatePinnedToCore(TASK_SOCK_OPS, "Socket Operations", 3072 / sizeof(StackType_t), NULL, 5, &xSocketOpsTaskHndl, 1);
113+
xTaskCreatePinnedToCore(TASK_SOCK_OPS, "Socket Operations", 4096 / sizeof(StackType_t), NULL, 5, &xSocketOpsTaskHndl, 1);
114114
// Create semaphore
115115
xSocketOpsSem = xSemaphoreCreateMutex();
116116
/* Stop task as it is not needed unless a socket conn is requested*/

0 commit comments

Comments
 (0)