36 lines
558 B
Plaintext
36 lines
558 B
Plaintext
/*
|
|
* Copyright 2023 Google LLC
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
/ {
|
|
test {
|
|
#address-cells = <1>;
|
|
#size-cells = <1>;
|
|
|
|
test_uart: uart@0 {
|
|
compatible = "vnd,serial";
|
|
reg = <0x0 0x1000>;
|
|
status = "okay";
|
|
|
|
gnss_nmea_generic: gnss-nmea-generic {
|
|
compatible = "gnss-nmea-generic";
|
|
};
|
|
|
|
gnss_air530z: air530z {
|
|
compatible = "luatos,air530z";
|
|
};
|
|
|
|
gnss_lc86g: lc86g {
|
|
compatible = "quectel,lc86g";
|
|
pps-mode = "GNSS_PPS_MODE_ENABLED";
|
|
};
|
|
|
|
gnss_m8: m8 {
|
|
compatible = "u-blox,m8";
|
|
};
|
|
};
|
|
};
|
|
};
|