Skip to content

Commit

Permalink
RPC: Fix NRF Attributes service (#21682)
Browse files Browse the repository at this point in the history
Increase stack for RPC thread, was crashing during Attribute reads.
  • Loading branch information
rgoliver authored and pull[bot] committed Oct 5, 2023
1 parent 0178c41 commit 7da47c3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/platform/nrfconnect/Rpc.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ class NrfButton final : public Button

namespace {

constexpr size_t kRpcTaskSize = 4096;
constexpr size_t kRpcTaskSize = 5120;
constexpr int kRpcPriority = 5;

K_THREAD_STACK_DEFINE(rpc_stack_area, kRpcTaskSize);
Expand Down

0 comments on commit 7da47c3

Please sign in to comment.