# Application-level Kconfig for the OpenLaserTag remote control.
# This file becomes the Kconfig root for the application and therefore must
# source the Zephyr Kconfig tree at the end.

menu "OpenLaserTag application"

config APP_BLE
	bool "Enable BLE Nordic UART service"
	default n
	select BT
	select BT_PERIPHERAL
	select BT_GATT_DYNAMIC_DB
	help
	  Enables the Nordic UART Service used for wireless command/telemetry
	  (src/ble_nus.c). Requires a board with a Bluetooth controller, e.g.
	  the Raspberry Pi Pico W (rpi_pico/rp2040/w) or an ESP32. Leave this
	  disabled for the plain rpi_pico, which has no radio.

	  Build with: west build -b rpi_pico/rp2040/w zephyr_app -- \
	      -DEXTRA_CONF_FILE=overlay-ble.conf

endmenu

source "Kconfig.zephyr"
