1/* 2 * Copyright 2023 Google LLC 3 * 4 * SPDX-License-Identifier: Apache-2.0 5 */ 6 7/ { 8 test { 9 #address-cells = <1>; 10 #size-cells = <1>; 11 12 test_uart: uart@0 { 13 compatible = "vnd,serial"; 14 reg = <0x0 0x1000>; 15 status = "okay"; 16 17 gnss_nmea_generic: gnss-nmea-generic { 18 compatible = "gnss-nmea-generic"; 19 }; 20 21 gnss_air530z: air530z { 22 compatible = "luatos,air530z"; 23 }; 24 25 gnss_lc86g: lc86g { 26 compatible = "quectel,lc86g"; 27 pps-mode = "GNSS_PPS_MODE_ENABLED"; 28 }; 29 30 gnss_m8: m8 { 31 compatible = "u-blox,m8"; 32 }; 33 }; 34 }; 35}; 36