1# ICP10125 barometric pressure/temperature sensor configuration options 2 3# Copyright (c) 2022 Mizuki Agawa <agawa.mizuki@fujitsu.com> 4# SPDX-License-Identifier: Apache-2.0 5 6menuconfig ICP10125 7 bool "ICP10125 Barometric Pressure & Temperature Sensor" 8 default y 9 depends on DT_HAS_INVENSENSE_ICP10125_ENABLED 10 select I2C 11 help 12 Enable driver for ICP10125 barometric pressure/temperature sensor. 13 14if ICP10125 15 16config ICP10125_CHECK_CRC 17 bool "Check the CRC of measument data" 18 imply CRC 19 default y 20 help 21 Verify the CRC checksum that appended to the measurement data. 22 23endif # ICP10125 24