zephyr/samples/sensor/sensor_shell/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

27 lines
418 B
Plaintext

/*
* Copyright (c) 2024 Meta Platforms
*
* SPDX-License-Identifier: Apache-2.0
*/
/ {
app {
#address-cells = <1>;
#size-cells = <0>;
vsensor0: sensor@0 {
compatible = "vnd,fake-sensor";
reg = <0>;
friendly-name = "Fake sensor 0";
status = "okay";
};
vsensor1: sensor@1 {
compatible = "vnd,fake-sensor";
reg = <1>;
friendly-name = "Fake sensor 1";
status = "okay";
};
};
};