1# Configuration options for the Zephyr DS2485 1-Wire master driver
2
3# Copyright (c) 2022 Thomas Stranger
4# SPDX-License-Identifier: Apache-2.0
5
6config W1_DS2485
7	bool "DS2485 1-wire master driver"
8	select I2C
9	depends on DT_HAS_MAXIM_DS2485_ENABLED
10	select W1_DS2477_85_COMMON
11	default y
12	help
13	  Enable the ds2485 w1 master driver.
14