#
# Copyright (c) 2020 Nordic Semiconductor
#
# SPDX-License-Identifier: LicenseRef-Nordic-5-Clause
#

config MODULE_BLE_ENABLE
	bool "Enable BLE UART Service"
	depends on BT_NUS || BT_NUS_CLIENT
	help
	  This option enables BLE NUS Service.

if MODULE_BLE_ENABLE

module = MODULE_BLE
module-str = BLE UART Service
source "subsys/logging/Kconfig.template.log_config"

endif

config MODULE_ADC_ENABLE
	bool "Enable ADC Service"
	depends on NRFX_SAADC
	help
	  This option enables ADC Service.

if MODULE_ADC_ENABLE

module = MODULE_ADC
module-str = ADC Service
source "subsys/logging/Kconfig.template.log_config"

endif

config BT_AUTO_SCAN
	bool "Authomatically scan at start and after disconnect"
	depends on BT_NUS || BT_NUS_CLIENT
	help
	  This option enables scan to start authomatically 
	  when program starts and after a device disconnects

config BT_AUTO_CONN
	bool "Authomatically connect to first device matching scan filter"
	depends on BT_NUS || BT_NUS_CLIENT
	help
	  This option enables authomatic connection 
	  to first device matching scan filter.

config BT_AUTO_ADV
	bool "Authomatically advertisement at start and after disconnect"
	depends on BT_NUS || BT_NUS_CLIENT
	help
	  This option enables advertisement to start authomatically 
	  when program starts and after device disconnects
