Add configuration and feedback implementation necessary to run UAC2 samples on nRF54H20. Limit nRF54H20 to Full-Speed only operation because the samples currently don't have necessary logic to support High-Speed. Signed-off-by: Tomasz Moń <tomasz.mon@nordicsemi.no>
15 lines
449 B
CMake
15 lines
449 B
CMake
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
cmake_minimum_required(VERSION 3.20.0)
|
|
find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE})
|
|
project(usb_audio_async_i2s)
|
|
|
|
include(${ZEPHYR_BASE}/samples/subsys/usb/common/common.cmake)
|
|
target_sources(app PRIVATE src/main.c)
|
|
|
|
if (CONFIG_SOC_COMPATIBLE_NRF5340_CPUAPP OR CONFIG_SOC_SERIES_NRF54HX)
|
|
target_sources(app PRIVATE src/feedback_nrf.c)
|
|
else()
|
|
target_sources(app PRIVATE src/feedback_dummy.c)
|
|
endif()
|