1# Copyright (c) 2019 Electronut Labs
2# Copyright (c) 2020 Laird Connectivity
3# SPDX-License-Identifier: Apache-2.0
4
5menuconfig SI7055
6	bool "Si7055 Temperature Sensor"
7	default y
8	depends on DT_HAS_SILABS_SI7055_ENABLED
9	select I2C
10	select CRC
11	help
12	  Enable I2C-based driver for Si7055 Temperature Sensor.
13
14if SI7055
15
16config SI7055_ENABLE_CHECKSUM
17	bool "SI7055 Checksum On Measurement"
18	help
19	  Validates the additional checksum byte for temperature measurements.
20
21endif # SI7055
22