2021-04-13 21:00:03 +08:00
|
|
|
# Copyright (c) 2021 Nordic Semiconductor ASA
|
|
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
|
|
|
|
menuconfig I2S_NRFX
|
|
|
|
bool "nRF I2S nrfx driver"
|
|
|
|
default y
|
2022-08-25 03:12:33 +08:00
|
|
|
depends on DT_HAS_NORDIC_NRF_I2S_ENABLED
|
2023-05-05 15:44:25 +08:00
|
|
|
select NRFX_I2S0 if HAS_HW_NRF_I2S0
|
2023-08-24 21:50:55 +08:00
|
|
|
select NRFX_I2S20 if HAS_HW_NRF_I2S20
|
2023-09-19 20:02:22 +08:00
|
|
|
select PINCTRL
|
2021-04-13 21:00:03 +08:00
|
|
|
help
|
|
|
|
Enable support for nrfx I2S driver for nRF MCU series.
|
|
|
|
|
|
|
|
if I2S_NRFX
|
|
|
|
|
|
|
|
config I2S_NRFX_RX_BLOCK_COUNT
|
|
|
|
int "RX queue length"
|
|
|
|
default 4
|
|
|
|
|
|
|
|
config I2S_NRFX_TX_BLOCK_COUNT
|
|
|
|
int "TX queue length"
|
|
|
|
default 4
|
|
|
|
|
|
|
|
endif # I2S_NRFX
|