1# 2# Copyright (c) 2022 Codecoup 3# 4# SPDX-License-Identifier: Apache-2.0 5# 6 7mainmenu "Bluetooth: Hearing Aid" 8 9menu "Zephyr" 10source "Kconfig.zephyr" 11endmenu 12 13menu "Hearing Aid" 14 15config HAP_HA_SET_RANK 16 int "Device rank in set" 17 depends on BT_CSIP_SET_MEMBER 18 range 1 2 19 help 20 Rank of this device in set. 21 22choice HAP_HA_HEARING_AID_TYPE_CHOICE 23 prompt "Hearing Aid Type selection" 24 help 25 Select the Hearing Aid Type to compile. 26 27config HAP_HA_HEARING_AID_MONAURAL 28 bool "Monaural Hearing Aid" 29 30config HAP_HA_HEARING_AID_BINAURAL 31 depends on BT_CSIP_SET_MEMBER 32 bool "Binaural Hearing Aid" 33 34config HAP_HA_HEARING_AID_BANDED 35 bool "Banded Hearing Aid" 36 37endchoice # HAP_HA_HEARING_AID_TYPE_CHOICE 38 39choice HAP_HA_HEARING_AID_LOCATION 40 prompt "Hearing Aid Device Location" 41 help 42 Select the Hearing Aid Device location. 43 44config HAP_HA_HEARING_AID_LEFT 45 bool "Left Ear" 46 47config HAP_HA_HEARING_AID_RIGHT 48 bool "Right Ear" 49 50endchoice # HAP_HA_HEARING_AID_LOCATION 51 52endmenu 53