Adds a sample of setting up and using an ISO central as a source of ISO data. This will periodically send ISO data to a connected ISO peripheral with varying sizes. Signed-off-by: Emil Gydesen <emil.gydesen@nordicsemi.no>
12 lines
262 B
CMake
12 lines
262 B
CMake
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
cmake_minimum_required(VERSION 3.13.1)
|
|
find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE})
|
|
project(central)
|
|
|
|
target_sources(app PRIVATE
|
|
src/main.c
|
|
)
|
|
|
|
zephyr_library_include_directories(${ZEPHYR_BASE}/samples/bluetooth)
|