zephyr/tests/drivers/build_all/charger/app.overlay
Ricardo Rivera-Matos e8e907b5a5 tests: build_all: charger: Builds BQ24190 driver
Adds the BQ24190 driver to the build_all test.

Signed-off-by: Ricardo Rivera-Matos <ricardo.rivera-matos@cirrus.com>
2023-10-20 14:55:22 +02:00

24 lines
420 B
Text

/*
* Copyright (c) 2023 Cirrus Logic, Inc.
* SPDX-License-Identifier: Apache-2.0
*/
#include <zephyr/dt-bindings/i2c/i2c.h>
/ {
test {
#address-cells = <1>;
#size-cells = <1>;
test_i2c: i2c@11112222 {
#address-cells = <1>;
#size-cells = <0>;
compatible = "vnd,i2c";
reg = <0x11112222 0x1000>;
status = "okay";
clock-frequency = <I2C_BITRATE_STANDARD>;
#include "i2c.dtsi"
};
};
};