Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[nrfconnect] Increase thread stack sizes for pigweed configuration #36878

Merged
merged 1 commit into from
Dec 18, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions examples/chef/nrfconnect/rpc.overlay
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,8 @@ CONFIG_LOG_OUTPUT=y
# Increase zephyr tty rx buffer
CONFIG_CONSOLE_GETCHAR_BUFSIZE=128

# Increase BLE thread stack size
CONFIG_BT_RX_STACK_SIZE=2048
# Increase thread stack sizes
CONFIG_BT_RX_STACK_SIZE=4096
CONFIG_MAIN_STACK_SIZE=8092
CONFIG_SYSTEM_WORKQUEUE_STACK_SIZE=2048

6 changes: 4 additions & 2 deletions examples/lighting-app/nrfconnect/rpc.overlay
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,8 @@ CONFIG_LOG_OUTPUT=y
# Increase zephyr tty rx buffer
CONFIG_CONSOLE_GETCHAR_BUFSIZE=128

# Increase BLE thread stack size
CONFIG_BT_RX_STACK_SIZE=2048
# Increase thread stack sizes
CONFIG_BT_RX_STACK_SIZE=4096
CONFIG_MAIN_STACK_SIZE=8092
CONFIG_SYSTEM_WORKQUEUE_STACK_SIZE=2048

Loading