1# 2# Copyright (c) 2022 Codecoup 3# Copyright 2023 NXP 4# 5# SPDX-License-Identifier: Apache-2.0 6# 7 8mainmenu "Bluetooth: Earbuds" 9 10menu "Zephyr" 11source "Kconfig.zephyr" 12endmenu 13 14menu "Earbuds" 15 16config TMAP_PERIPHERAL_SET_RANK 17 int "Device rank in set" 18 depends on TMAP_PERIPHERAL_DUO 19 range 1 2 20 help 21 Rank of this device in set. 22 23choice TMAP_PERIPHERAL_TYPE_CHOICE 24 prompt "Earbuds type" 25 help 26 Select the Earbuds Type to compile. 27 28config TMAP_PERIPHERAL_SINGLE 29 bool "Single ear headset" 30 31config TMAP_PERIPHERAL_DUO 32 depends on BT_CAP_ACCEPTOR_SET_MEMBER 33 bool "Duo headset" 34 35endchoice # TMAP_PERIPHERAL_TYPE_CHOICE 36 37choice TMAP_PERIPHERAL_LOCATION 38 prompt "Earbud Location" 39 help 40 Select the Earbud location. 41 42config TMAP_PERIPHERAL_LEFT 43 bool "Left Ear" 44 45config TMAP_PERIPHERAL_RIGHT 46 bool "Right Ear" 47 48endchoice # TMAP_PERIPHERAL_LOCATION 49 50endmenu 51