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 EXPERIMENTAL 9 help 10 Backend that sends log messages over Bluetooth LE Notifications. This 11 characteristic and its service are compatible with the Nordic UART 12 Service (NUS), from the nRF Connect SDK. 13 This allows to use this BLE Logger directly with a compatible app such 14 as the nRF UART 2.0 or nRF Toolbox app. 15 16if LOG_BACKEND_BLE 17 18backend = BLE 19backend-str = ble 20source "subsys/logging/Kconfig.template.log_format_config" 21 22endif # LOG_BACKEND_BLE 23