zephyr/samples/drivers/i2s/i2s_codec/Kconfig
Pisit Sawangvonganan a163f9db61 kconfig: fix typo in (arch, boards, kernel, modules, samples, share)
Utilize a code spell-checking tool to scan for and correct spelling errors
in `Kconfig` files within the `arch`, `boards`, `kernel`, `modules`,
`samples`, and `share` directory.
Additionally, incorporates a fix recommended by the reviewer.

Signed-off-by: Pisit Sawangvonganan <pisit@ndrsolution.com>
2025-07-01 10:58:54 -10:00

32 lines
626 B
Plaintext

# Copyright (c) 2024 NXP
# SPDX-License-Identifier: Apache-2.0
source "Kconfig.zephyr"
config I2S_INIT_BUFFERS
int "Initial count of audio data blocks"
default 2
help
Controls the initial count of audio data blocks, which are (optionally)
filled by data from the DMIC peripheral and played back by the I2S
output peripheral.
config SAMPLE_FREQ
int "Sample rate"
default 48000
help
Sample frequency of the system.
config USE_DMIC
bool "Use DMIC as an audio input"
if USE_DMIC
config DMIC_CHANNELS
int "Number of DMIC channels"
default 1
help
Count of DMIC channels to capture and process.
endif