8000 modusocket: increased stack size of task "SockOps" · daq-tools/pycom-micropython@94bb382 · GitHub
[go: up one dir, main page]

Skip to content

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

Lines changed: 1 addition & 1 deletion
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)
0