zephyr/samples/drivers/i2s/echo/src/codec.h
Andrzej Głąbek 5dcc876e0b samples: drivers: Add I2S echo sample
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>
2021-07-28 18:41:26 -04:00

12 lines
206 B
C

/*
* Copyright (c) 2021 Nordic Semiconductor ASA
*
* SPDX-License-Identifier: Apache-2.0
*/
#define WM8731_NODE DT_NODELABEL(wm8731)
#if DT_ON_BUS(WM8731_NODE, i2c)
bool init_wm8731_i2c(void);
#endif