This example demonstrates I2S audio playback combined with the codec API. It can use the dmic API for audio input. Signed-off-by: Hake Huang <hake.huang@oss.nxp.com> Signed-off-by: Vit Stanicek <vit.stanicek@nxp.com>
9 lines
192 B
CMake
9 lines
192 B
CMake
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
cmake_minimum_required(VERSION 3.20.0)
|
|
|
|
find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE})
|
|
project(i2s_rx_tx)
|
|
|
|
target_sources(app PRIVATE src/main.c)
|