mirror of
https://github.com/raspberrypi/linux.git
synced 2025-12-06 01:49:46 +00:00
24 lines
697 B
Plaintext
24 lines
697 B
Plaintext
// Definitions for BMP085/BMP180 digital barometric pressure and temperature sensors from Bosch Sensortec
|
|
/dts-v1/;
|
|
/plugin/;
|
|
|
|
/ {
|
|
compatible = "brcm,bcm2708";
|
|
|
|
fragment@0 {
|
|
target = <&i2c1>;
|
|
__overlay__ {
|
|
#address-cells = <1>;
|
|
#size-cells = <0>;
|
|
status = "okay";
|
|
|
|
bmp085@77 {
|
|
compatible = "bosch,bmp085";
|
|
reg = <0x77>;
|
|
default-oversampling = <3>;
|
|
status = "okay";
|
|
};
|
|
};
|
|
};
|
|
};
|