Added a new logger backend to recieve data over a BLE notification characteristic. The characteristic is based on the UUID from the Nordic connect SDK service NUS, which allows to have a UART shell over BLE. The idea behind this, is that this logger can be used directly with the NRF apps or any other BLE UART terminal app. Signed-off-by: Victor Chavez <chavez-bermudez@fh-aachen.de>
11 lines
206 B
CMake
11 lines
206 B
CMake
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
cmake_minimum_required(VERSION 3.20.0)
|
|
|
|
find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE})
|
|
project(logger_ble_backend)
|
|
|
|
target_sources(app PRIVATE
|
|
src/main.c
|
|
)
|