Skip to content

Commit

Permalink
Stack size for BL is not enough to execute backlog commands (#1226)
Browse files Browse the repository at this point in the history
Specifically "Save, Reset SVM and run file as script thread" crashes the chip due to stack overflow
  • Loading branch information
giedriuslt committed May 12, 2024
1 parent 6526cda commit 03d6824
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/httpserver/http_tcp_server.c
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
#elif PLATFORM_W600
#define HTTP_CLIENT_STACK_SIZE 8192
#else
#define HTTP_CLIENT_STACK_SIZE 2048
#define HTTP_CLIENT_STACK_SIZE 8192
#endif

#define CREATE_THREAD_PER_EACH_HTTP_CLIENT
Expand Down

0 comments on commit 03d6824

Please sign in to comment.