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:
Emil Gydesen 2024-03-26 14:48:53 +01:00 committed by Anas Nashif
commit 3caa8f403a
2 changed files with 2 additions and 2 deletions

View file

@ -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,
};

View file

@ -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,
};