1# STM32 I2S driver configuration options
2
3# Copyright (c) 2018 STMicroelectronics
4# SPDX-License-Identifier: Apache-2.0
5
6menuconfig I2S_STM32
7	bool "STM32 MCU I2S controller driver"
8	default y
9	depends on DT_HAS_ST_STM32_I2S_ENABLED
10	select DMA
11	help
12	  Enable I2S support on the STM32 family of processors.
13	  (Tested on the STM32F4 series)
14
15if I2S_STM32
16
17config I2S_STM32_RX_BLOCK_COUNT
18	int "RX queue length"
19	default 4
20
21config I2S_STM32_TX_BLOCK_COUNT
22	int "TX queue length"
23	default 4
24
25endif # I2S_STM32
26