source "Kconfig.zephyr"

menuconfig MT_PERIPHERAL
	bool "enable peripheral role"
	default n
	help
	   peripheral 

if MT_PERIPHERAL	   

choice PERIPHERAL_ADV_SELECTION
	prompt "adv Selection"
	default MT_1M_PERIPHERAL
	help
	  Select adv type to compile.

config MT_1M_PERIPHERAL
	bool "1M"
	help
		1M adv type

config MT_CODED_PERIPHERAL
	bool "CODED"
	help
		coded adv type

endchoice

if MT_1M_PERIPHERAL

config MT_DEVICE_NAME
	string "Bluetooth device name"
	default "dis_1m"
endif

if MT_CODED_PERIPHERAL

config MT_DEVICE_NAME
	string "Bluetooth device name"
	default "dis_coded"

config BT_CTLR_PHY_CODED
	bool "coded adv support"
	default y	

endif

module = MT_PERIPHERAL
module-str = peripheral role
source "${ZEPHYR_BASE}/subsys/logging/Kconfig.template.log_config"
endif # MT_PERIPHERAL
