1# HS400X temperature and humidity sensor
2
3# Copyright (c) 2024 Renesas Electronics Corporation
4# SPDX-License-Identifier: Apache-2.0
5
6config HS400X
7	bool "HS400x sensor"
8	default y
9	depends on DT_HAS_RENESAS_HS400X_ENABLED
10	help
11	  Enable driver for HS400x temperature and humidity sensors.
12
13if HS400X
14
15config HS400X_CRC
16	bool "HS400X CRC check"
17	select CRC
18	help
19	 Verify the checksum byte from measurements
20
21endif # HS400x
22