1# Copyright (c) 2024 Demant A/S
2# SPDX-License-Identifier: Apache-2.0
3
4mainmenu "Bluetooth: PBP Broadcast Audio Source"
5
6config STATIC_BROADCAST_ID
7	bool "Use static broadcast ID"
8	default y
9	help
10	   Enabling this option will make the application use static broadcast ID, as opposed to a
11	   randomly generated one.
12
13config BROADCAST_ID
14	hex "The static broadcast ID to use"
15	range 0x000000 0xFFFFFF
16	depends on STATIC_BROADCAST_ID
17	help
18	   This is the 3-octet broadcast ID advertised if static broadcast IDs are enabled.
19
20source "Kconfig.zephyr"
21