mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-09-02 23:51:56 +00:00
Add support for the STM32L562E-DK Discovery board (based on the nucleo_l552ze_q board). Tested with hello_world, basic/blinky, basic/button. Signed-off-by: Yestin Sun <sunyi0804@gmail.com>
29 lines
463 B
Plaintext
29 lines
463 B
Plaintext
/*
|
|
* Copyright (c) 2020 Yestin Sun
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
/dts-v1/;
|
|
#include "stm32l562e_dk_common.dtsi"
|
|
|
|
/ {
|
|
model = "STMicroelectronics STM32L562E-DK Discovery board";
|
|
compatible = "st,stm32l562e-dk";
|
|
|
|
#address-cells = <1>;
|
|
#size-cells = <1>;
|
|
|
|
chosen {
|
|
zephyr,console = &usart1;
|
|
zephyr,shell-uart = &usart1;
|
|
zephyr,sram = &sram0;
|
|
zephyr,flash = &flash0;
|
|
};
|
|
|
|
aliases {
|
|
led0 = &green_led_10;
|
|
sw0 = &user_button;
|
|
};
|
|
};
|