zephyr/tests/subsys/emul/app.overlay
Jordan Yates 243eb36b18 everywhere: reindent .overlay files with tabs
`checkpatch.pl` requires that dts sources are indented with tabs,
fix all the spaces that slipped in while checkpatch wasn't watching.

Signed-off-by: Jordan Yates <jordan@embeint.com>
2024-06-26 15:59:44 +02:00

33 lines
651 B
Plaintext

/*
* Copyright 2022 Google LLC
*
* SPDX-License-Identifier: Apache-2.0
*
* Application overlay for testing the emul.h API.
*
* Names in this file should be chosen in a way that won't conflict
* with real-world devicetree nodes, to allow these tests to run on
* (and be extended to test) real hardware.
*/
&i2c0 {
test_bmi: bmi@68 {
compatible = "bosch,bmi160";
reg = <0x68>;
status = "okay";
};
emul_tester_a: driver@aa {
compatible = "vnd,emul-tester";
reg = <0xaa>;
status = "okay";
scale = <1>;
};
emul_tester_b: driver@bb {
compatible = "vnd,emul-tester";
reg = <0xbb>;
status = "okay";
scale = <10>;
};
};