File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
samples/bluetooth/unicast_audio_client/src
subsys/bluetooth/audio/shell Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ static struct audio_sink {
28
28
} sinks [CONFIG_BT_BAP_UNICAST_CLIENT_ASE_SNK_COUNT ];
29
29
static struct bt_bap_ep * sources [CONFIG_BT_BAP_UNICAST_CLIENT_ASE_SRC_COUNT ];
30
30
NET_BUF_POOL_FIXED_DEFINE (tx_pool , CONFIG_BT_BAP_UNICAST_CLIENT_ASE_SNK_COUNT ,
31
- CONFIG_BT_ISO_TX_MTU + BT_ISO_CHAN_SEND_RESERVE ,
31
+ BT_ISO_SDU_BUF_SIZE ( CONFIG_BT_ISO_TX_MTU ) ,
32
32
CONFIG_BT_CONN_TX_USER_DATA_SIZE , NULL );
33
33
34
34
static struct bt_bap_stream streams [CONFIG_BT_BAP_UNICAST_CLIENT_ASE_SNK_COUNT +
Original file line number Diff line number Diff line change @@ -170,7 +170,7 @@ static uint16_t get_next_seq_num(uint32_t interval_us)
170
170
171
171
#if defined(CONFIG_LIBLC3 ) && defined(CONFIG_BT_AUDIO_TX )
172
172
NET_BUF_POOL_FIXED_DEFINE (sine_tx_pool , CONFIG_BT_ISO_TX_BUF_COUNT ,
173
- CONFIG_BT_ISO_TX_MTU + BT_ISO_CHAN_SEND_RESERVE ,
173
+ BT_ISO_SDU_BUF_SIZE ( CONFIG_BT_ISO_TX_MTU ) ,
174
174
CONFIG_BT_CONN_TX_USER_DATA_SIZE , NULL );
175
175
176
176
#include "lc3.h"
You can’t perform that action at this time.
0 commit comments