Removed the generation of broadcast id inside the stack. It is now up to the application to generate this by itself. The CAP sample has been modified to allow either a static broadcast, or a random one. All of this is handled in the application. Signed-off-by: Fredrik Danebjer <frdn@demant.com>
21 lines
549 B
Plaintext
21 lines
549 B
Plaintext
# Copyright (c) 2024 Demant A/S
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
mainmenu "Bluetooth: PBP Broadcast Audio Source"
|
|
|
|
config STATIC_BROADCAST_ID
|
|
bool "Use static broadcast ID"
|
|
default y
|
|
help
|
|
Enabling this option will make the application use static broadcast ID, as opposed to a
|
|
randomly generated one.
|
|
|
|
config BROADCAST_ID
|
|
hex "The static broadcast ID to use"
|
|
range 0x000000 0xFFFFFF
|
|
depends on STATIC_BROADCAST_ID
|
|
help
|
|
This is the 3-octet broadcast ID advertised if static broadcast IDs are enabled.
|
|
|
|
source "Kconfig.zephyr"
|