1# Copyright (c) 2024 Chris Ruehl
2# SPDX-License-Identifier: Apache-2.0
3
4menuconfig BMP180
5	bool "Bosch BMP180 pressure sensor"
6	default y
7	depends on DT_HAS_BOSCH_BMP180_ENABLED
8	select I2C
9	help
10	  Enable driver for the Bosch BMP180 pressure sensor
11
12if BMP180
13
14config BMP180_OSR_RUNTIME
15	bool "Change OSR at runtime."
16	help
17	  Enable runtime changes of the oversampling value
18
19endif # BMP180
20