1/*
2 * Copyright (c) 2020 Linaro Limited
3 *
4 * SPDX-License-Identifier: Apache-2.0
5 */
6
7/dts-v1/;
8#include "nucleo_l552ze_q-common.dtsi"
9
10/ {
11	model = "STMicroelectronics STM32L552ZE-NUCLEO-Q board";
12	compatible = "st,stm32l552ze-nucleo-q";
13
14	#address-cells = <1>;
15	#size-cells = <1>;
16
17	chosen {
18		zephyr,console = &lpuart1;
19		zephyr,shell-uart = &lpuart1;
20		zephyr,sram = &sram0;
21		zephyr,flash = &flash0;
22	};
23
24	aliases {
25		led0 = &blue_led_1;
26		sw0 = &user_button;
27	};
28};
29