You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
585 B
36 lines
585 B
/* |
|
* 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>; |
|
current-speed = <9600>; |
|
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"; |
|
}; |
|
}; |
|
}; |
|
};
|
|
|