1# 2# Copyright (c) 2024, NXP 3# 4# SPDX-License-Identifier: Apache-2.0 5# 6 7# CONFIG_DMA_TCD_QUEUE_SIZE sets size of queue used to chain DMA blocks (TCDs) 8# together, and should be sized as needed by the application. If not large 9# enough, the DMA may starve. Symptoms of this issue include transmit blocks 10# repeated, or RX blocks skipped. For I2S driver, queue size must be at least 3. 11CONFIG_DMA_TCD_QUEUE_SIZE=4 12 13# Repeat test continually to help find intermittent issues 14CONFIG_ZTEST_RETEST_IF_PASSED=y 15 16# I2S and DMA logging can occur in interrupt context, and interfere with I2S 17# stream timing. If using either logging, set logging to deferred 18# CONFIG_LOG_MODE_DEFERRED=y 19 20CONFIG_DMA_LOG_LEVEL_OFF=y 21CONFIG_I2S_LOG_LEVEL_OFF=y 22