26 lines
867 B
Plaintext
Executable File
26 lines
867 B
Plaintext
Executable File
#===============================================================================
|
|
# @brief Kconfig file.
|
|
# Copyright (c) HiSilicon (Shanghai) Technologies Co., Ltd. 2023-2023. All rights reserved.
|
|
#===============================================================================
|
|
config SAMPLE_SUPPORT_I2S_DMA_LLI_MASTER
|
|
bool
|
|
prompt "Support I2S Master Sample."
|
|
default n
|
|
depends on SAMPLE_SUPPORT_I2S_DMA_LLI
|
|
help
|
|
This option means support I2S Master Sample.
|
|
|
|
config SAMPLE_SUPPORT_I2S_DMA_LLI_SLAVE
|
|
bool
|
|
prompt "Support I2S Slave Sample."
|
|
default n
|
|
depends on SAMPLE_SUPPORT_I2S_DMA_LLI
|
|
help
|
|
This option means support I2S Slave Sample.
|
|
|
|
config I2S_TRANSFER_LEN_OF_DMA_LLI
|
|
int
|
|
prompt "Set the length of transfer by DMA."
|
|
default 128
|
|
help
|
|
This option means the length of transfer by DMA. |