1/*
2 * Copyright 2024 NXP
3 *
4 * SPDX-License-Identifier: Apache-2.0
5 */
6
7/ {
8	aliases {
9		gnss = &gnss;
10	};
11};
12
13&lpuart2 {
14	status = "okay";
15	current-speed = <115200>;
16	pinctrl-0 = <&pinmux_lpuart2>;
17	pinctrl-1 = <&pinmux_lpuart2_sleep>;
18	pinctrl-names = "default", "sleep";
19
20	gnss: u_blox_m10 {
21		status = "okay";
22		compatible = "u-blox,m8";
23		uart-baudrate = <115200>;
24	};
25};
26