1# Copyright (c) 2024 Renesas Electronics Corporation
2# SPDX-License-Identifier: Apache-2.0
3
4mainmenu "I2C API Test"
5
6source "Kconfig.zephyr"
7
8choice
9	prompt "Select GY271 Sensor Type"
10	default SENSOR_GY271_HMC
11
12	config SENSOR_GY271_HMC
13		bool "Use gy271 HMC type sensor"
14		help
15		  Use to enable the use of gy271 HMC sensor
16
17	config SENSOR_GY271_QMC
18		bool "Use gy271 QMC type sensor"
19		help
20		  Use to enable the use of gy271 QMC sensor
21
22endchoice
23