1# Bluetooth Audio - Gaming Audio Profile (GMAP) options
2#
3# Copyright (c) 2023 Nordic Semiconductor ASA
4#
5# SPDX-License-Identifier: Apache-2.0
6#
7
8config BT_GMAP_UGG_SUPPORTED
9	def_bool BT_CAP_INITIATOR && BT_BAP_UNICAST_CLIENT && BT_VCP_VOL_CTLR
10
11config BT_GMAP_UGT_SUPPORTED
12	def_bool BT_CAP_ACCEPTOR && BT_BAP_UNICAST_SERVER
13
14config BT_GMAP_BGS_SUPPORTED
15	def_bool BT_CAP_INITIATOR && BT_BAP_BROADCAST_SOURCE
16
17config BT_GMAP_BGR_SUPPORTED
18	def_bool BT_CAP_ACCEPTOR && BT_BAP_BROADCAST_SINK && BT_VCP_VOL_REND
19
20config BT_GMAP
21	bool "Gaming Audio Profile"
22	depends on BT_CAP_ACCEPTOR || BT_CAP_INITIATOR
23	help
24	  Enabling this will enable GMAP.
25
26parent-module = BT
27module = BT_GMAP
28module-str = "Bluetooth Gaming Audio Profile"
29source "subsys/logging/Kconfig.template.log_config_inherit"
30