mirror of
https://github.com/DarkFlippers/unleashed-firmware
synced 2024-11-23 04:53:08 +00:00
Rpc: increase stack size, fix stack overflow (#1997)
This commit is contained in:
parent
a959fa32bc
commit
f94e8f4ac8
1 changed files with 1 additions and 1 deletions
|
@ -372,7 +372,7 @@ RpcSession* rpc_session_open(Rpc* rpc) {
|
||||||
|
|
||||||
session->thread = furi_thread_alloc();
|
session->thread = furi_thread_alloc();
|
||||||
furi_thread_set_name(session->thread, "RpcSessionWorker");
|
furi_thread_set_name(session->thread, "RpcSessionWorker");
|
||||||
furi_thread_set_stack_size(session->thread, 2048);
|
furi_thread_set_stack_size(session->thread, 3072);
|
||||||
furi_thread_set_context(session->thread, session);
|
furi_thread_set_context(session->thread, session);
|
||||||
furi_thread_set_callback(session->thread, rpc_session_worker);
|
furi_thread_set_callback(session->thread, rpc_session_worker);
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue