1# Copyright (c) 2021 Nordic Semiconductor ASA
2# Copyright (c) 2025 Croxel Inc.
3# SPDX-License-Identifier: Apache-2.0
4
5source "Kconfig.zephyr"
6
7config I2C
8	default $(dt_compat_on_bus,$(DT_COMPAT_WOLFSON_WM8731),i2c) \
9		|| $(dt_compat_on_bus,$(DT_COMPAT_ADI_MAX9867),i2c)
10
11config TOGGLE_ECHO_EFFECT_SW0
12	bool "Toggle echo effect when pressing sw0"
13	depends on $(dt_alias_enabled,sw0)
14	select GPIO
15	default y
16
17config STOP_START_STREAMS_SW1
18	bool "Start/stop I2S streams when pressing sw1"
19	depends on $(dt_alias_enabled,sw1)
20	select GPIO
21	default y
22