tests: drivers: build_all: sensor: add lm77 driver

Add the LM77 digital temperature sensor driver to the build_all sensor
drivers test case.

Signed-off-by: Henrik Brix Andersen <hebad@vestas.com>
This commit is contained in:
Henrik Brix Andersen 2021-08-05 13:19:37 +02:00 committed by Christopher Friedt
commit c27caac5e7
2 changed files with 8 additions and 0 deletions

View file

@ -669,3 +669,10 @@ test_i2c_ina23x: ina23x@4f {
alert_limit = <0>; alert_limit = <0>;
irq-gpios = <&test_gpio 0 0>; irq-gpios = <&test_gpio 0 0>;
}; };
test_i2c_lm77: lm77@50 {
compatible = "lm77";
label = "LM77";
reg = <0x50>;
int-gpios = <&test_gpio 0 0>;
};

View file

@ -52,6 +52,7 @@ CONFIG_LIS2DW12=y
CONFIG_LIS2MDL=y CONFIG_LIS2MDL=y
CONFIG_LIS3MDL=y CONFIG_LIS3MDL=y
CONFIG_LM75=y CONFIG_LM75=y
CONFIG_LM77=y
CONFIG_LPS22HB=y CONFIG_LPS22HB=y
CONFIG_LPS22HH=y CONFIG_LPS22HH=y
CONFIG_LPS25HB=y CONFIG_LPS25HB=y