Skip to content

Commit

Permalink
samples: Bluetooth: iso_broadcast: Restrict max stream sync
Browse files Browse the repository at this point in the history
Restrict possible maximum stream synchronization to
implementation defined 2 stream, as structure declarations
in the implementation is limited to 2.

Signed-off-by: Vinayak Kariappa Chettimada <[email protected]>
  • Loading branch information
cvinayak committed Sep 10, 2024
1 parent f98f71b commit ccdf100
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion samples/bluetooth/iso_receive/src/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@

#define PA_RETRY_COUNT 6

#define BIS_ISO_CHAN_COUNT 2
#define BIS_ISO_CHAN_COUNT MIN(2U, CONFIG_BT_ISO_MAX_CHAN)

static bool per_adv_found;
static bool per_adv_lost;
Expand Down

0 comments on commit ccdf100

Please sign in to comment.