1# Copyright (c) 2021 Nordic Semiconductor ASA 2# SPDX-License-Identifier: Apache-2.0 3 4menuconfig I2S_NRFX 5 bool "nRF I2S nrfx driver" 6 default y 7 depends on DT_HAS_NORDIC_NRF_I2S_ENABLED 8 select NRFX_I2S0 if HAS_HW_NRF_I2S0 9 select PINCTRL 10 help 11 Enable support for nrfx I2S driver for nRF MCU series. 12 13if I2S_NRFX 14 15config I2S_NRFX_RX_BLOCK_COUNT 16 int "RX queue length" 17 default 4 18 19config I2S_NRFX_TX_BLOCK_COUNT 20 int "TX queue length" 21 default 4 22 23endif # I2S_NRFX 24