Bluetooth: Audio: Shell: Fix snk_chan_cnt for AC_5
The audio configuration 5 is defined to have 2 sink channels per stream and 1 source channel per stream. Signed-off-by: Emil Gydesen <emil.gydesen@nordicsemi.no>
This commit is contained in:
parent
6073b630da
commit
3caa8f403a
2 changed files with 2 additions and 2 deletions
|
@ -896,7 +896,7 @@ static int cmd_cap_ac_5(const struct shell *sh, size_t argc, char **argv)
|
|||
.conn_cnt = 1U,
|
||||
.snk_cnt = {1U},
|
||||
.src_cnt = {1U},
|
||||
.snk_chan_cnt = 1U,
|
||||
.snk_chan_cnt = 2U,
|
||||
.src_chan_cnt = 1U,
|
||||
};
|
||||
|
||||
|
|
|
@ -326,7 +326,7 @@ static int cmd_gmap_ac_5(const struct shell *sh, size_t argc, char **argv)
|
|||
.conn_cnt = 1U,
|
||||
.snk_cnt = {1U},
|
||||
.src_cnt = {1U},
|
||||
.snk_chan_cnt = 1U,
|
||||
.snk_chan_cnt = 2U,
|
||||
.src_chan_cnt = 1U,
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue