Commit ea05d61c authored by Emil Gydesen's avatar Emil Gydesen Committed by Johan Hedberg
Browse files

samples: Bluetooth: Fix stack size for unicast audio server



The unicast audio server is actually decoding in the RX
thread, and not the system workqueue.

This is a temporary fix, as ideally it would do the
decoding in a separate thread to avoid taking too much
time in the system threads.

Signed-off-by: default avatarEmil Gydesen <emil.gydesen@nordicsemi.no>
parent 3334b552
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
# For LC3 the following configs are needed
CONFIG_FPU=y
CONFIG_LIBLC3=y
# The LC3 codec uses a large amount of stack. This app runs the codec in the work-queue, hence
# inctease stack size for that thread.
CONFIG_SYSTEM_WORKQUEUE_STACK_SIZE=4096
# The LC3 codec uses a large amount of stack. This app runs the decoding codec in the RX thread,
# hence increase the stack size for that thread.
CONFIG_BT_RX_STACK_SIZE=4096

CONFIG_BT_BUF_EVT_RX_SIZE=255
CONFIG_BT_BUF_ACL_RX_SIZE=255