From 8a154da914a0854b8a2a66e65b64d23e66accdf6 Mon Sep 17 00:00:00 2001 From: Chris Ruehl Date: Sat, 24 Aug 2024 11:00:22 +0800 Subject: [PATCH] tests: build_all: sensors: add bmp180@94, i2c.dtsi Add bmp180 test case to tests/drivers/build_all/sensor/i2c.dtsi Signed-off-by: Chris Ruehl --- tests/drivers/build_all/sensor/i2c.dtsi | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/tests/drivers/build_all/sensor/i2c.dtsi b/tests/drivers/build_all/sensor/i2c.dtsi index f7a744a4a27..669bd9f54d4 100644 --- a/tests/drivers/build_all/sensor/i2c.dtsi +++ b/tests/drivers/build_all/sensor/i2c.dtsi @@ -1090,3 +1090,9 @@ test_i2c_fxls8974: fxls8974@93 { int1-gpios = <&test_gpio 0 0>; int2-gpios = <&test_gpio 0 0>; }; + +test_i2c_bmp180: bmp180@94 { + compatible = "bosch,bmp180"; + reg = <0x94>; + osr-press = <0x01>; +};