1# Copyright (c) 2023 Victor Chavez
2# SPDX-License-Identifier: Apache-2.0
3
4config LOG_BACKEND_BLE
5	bool "Bluetooth Low Energy (BLE) backend"
6	depends on BT
7	depends on LOG_PROCESS_THREAD_STACK_SIZE>=2048
8	select LOG_OUTPUT
9	select EXPERIMENTAL
10	help
11	  Backend that sends log messages over Bluetooth LE Notifications. This
12	  characteristic and its service are compatible with the Nordic UART
13	  Service (NUS), from the nRF Connect SDK.
14	  This allows to use this BLE Logger directly with a compatible app such
15	  as the nRF UART 2.0 or nRF Toolbox app.
16
17if LOG_BACKEND_BLE
18
19backend = BLE
20backend-str = ble
21source "subsys/logging/Kconfig.template.log_format_config"
22
23endif # LOG_BACKEND_BLE
24