Add a sample intended to show how to use I2S drivers in processing of audio streams. The sample starts both the RX and TX streams and adds a simple echo effect to the received audio signal. Signed-off-by: Andrzej Głąbek <andrzej.glabek@nordicsemi.no>
11 lines
292 B
Plaintext
11 lines
292 B
Plaintext
# Copyright (c) 2021 Nordic Semiconductor ASA
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
# Workaround for not being able to have commas in macro arguments
|
|
DT_COMPAT_WOLFSON_WM8731 := wolfson,wm8731
|
|
|
|
config I2C
|
|
default $(dt_compat_on_bus,$(DT_COMPAT_WOLFSON_WM8731),i2c)
|
|
|
|
source "Kconfig.zephyr"
|