The BLE acronym is not an official description of Bluetooth LE, and the Bluetooth SIG only ever refers to it as Bluetooth Low Energy or Bluetooth LE, so Zephyr should as well. This commit does not change any board or vendor specific documentation, and the term BLE may still be used in those. It will be up to the vendors to update it if they want, since many of them are using the term BLE in their products. Signed-off-by: Emil Gydesen <emil.gydesen@nordicsemi.no>
23 lines
670 B
Plaintext
23 lines
670 B
Plaintext
# Copyright (c) 2023 Victor Chavez
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
config LOG_BACKEND_BLE
|
|
bool "Bluetooth Low Energy (LE) backend"
|
|
depends on BT
|
|
depends on LOG_PROCESS_THREAD_STACK_SIZE>=2048
|
|
select EXPERIMENTAL
|
|
help
|
|
Backend that sends log messages over Bluetooth LE Notifications. This
|
|
characteristic and its service are compatible with the Nordic UART
|
|
Service (NUS), from the nRF Connect SDK.
|
|
This allows to use this BLE Logger directly with a compatible app such
|
|
as the nRF UART 2.0 or nRF Toolbox app.
|
|
|
|
if LOG_BACKEND_BLE
|
|
|
|
backend = BLE
|
|
backend-str = ble
|
|
source "subsys/logging/Kconfig.template.log_format_config"
|
|
|
|
endif # LOG_BACKEND_BLE
|