zephyr/drivers/w1/Kconfig.ds2485
Thomas Stranger 81bf4f98f7 drivers/w1: driver for ds2485 1-Wire master
This commit introduces the 1-wire master driver for maxim ds2485.

The ds2485 master has nearly the same (1-wire) feature set and
i2c-interface as the ds2477.
Therefore the common parts are extracted, but to avoid
any nda troubles only the ds2485 specific part is included.

Compared to older 1-wire masters, the ds2485 supports higher level
commands, supporting multi byte operations, search next, automatic crc
calculation.

In this driver only basic read and write operations are supported,
further hardware features are not yet utilized by the driver.

Signed-off-by: Thomas Stranger <thomas.stranger@outlook.com>
2022-09-09 14:11:30 +00:00

14 lines
333 B
Plaintext

# Configuration options for the Zephyr DS2485 1-Wire master driver
# Copyright (c) 2022 Thomas Stranger
# SPDX-License-Identifier: Apache-2.0
config W1_DS2485
bool "DS2485 1-wire master driver"
select I2C
depends on DT_HAS_MAXIM_DS2485_ENABLED
select W1_DS2477_85_COMMON
default y
help
Enable the ds2485 w1 master driver.