1BMP085/BMP18x/BMP28x digital pressure sensors 2 3Required properties: 4- compatible: must be one of: 5 "bosch,bmp085" 6 "bosch,bmp180" 7 "bosch,bmp280" 8 "bosch,bme280" 9 10Optional properties: 11- interrupts: interrupt mapping for IRQ 12- reset-gpios: a GPIO line handling reset of the sensor: as the line is 13 active low, it should be marked GPIO_ACTIVE_LOW (see gpio/gpio.txt) 14- vddd-supply: digital voltage regulator (see regulator/regulator.txt) 15- vdda-supply: analog voltage regulator (see regulator/regulator.txt) 16 17Example: 18 19pressure@77 { 20 compatible = "bosch,bmp085"; 21 reg = <0x77>; 22 interrupt-parent = <&gpio0>; 23 interrupts = <25 IRQ_TYPE_EDGE_RISING>; 24 reset-gpios = <&gpio0 26 GPIO_ACTIVE_LOW>; 25 vddd-supply = <&foo>; 26 vdda-supply = <&bar>; 27}; 28