1# Copyright (c) 2023 Intel Corporation
2#
3# SPDX-License-Identifier: Apache-2.0
4
5mainmenu "ADC accuracy test"
6
7source "Kconfig.zephyr"
8
9# Workaround to have commas on function arguments
10ZEPHYR_USER := zephyr,user
11
12config DAC_SOURCE_TEST
13	bool
14	default y if $(dt_node_has_prop,/$(ZEPHYR_USER),dac)
15
16config REFERENCE_VOLTAGE_TEST
17	bool
18	default y if $(dt_node_has_prop,/$(ZEPHYR_USER),reference-mv)
19
20config NUMBER_OF_PASSES
21	int "Number of passes"
22	default 5
23