zephyr/boards/arm/nucleo_h745zi_q/nucleo_h745zi_q_m4.dts
Alexander Kozhinov dd9e9c2e71 boards: arm: dts: nuleo_h745zi_q_m4
bringing model and compatible descriptors
  to same style as in case of M7 core
enable UART8 for Cortex-M4 in it's dts

Signed-off-by: Alexander Kozhinov <AlexanderKozhinov@yandex.com>
2020-07-22 15:19:38 -05:00

33 lines
580 B
Plaintext

/*
* Copyright (c) 2020 Alexander Kozhinov
* AlexanderKozhinov@yandex.com
*
* SPDX-License-Identifier: Apache-2.0
*/
/dts-v1/;
#include <st/h7/stm32h745Xi_m4.dtsi>
#include "nucleo_h745zi_q.dtsi"
/ {
model = "STMicroelectronics STM32H745ZI-Q-NUCLEO board";
compatible = "st,stm32h745zi-q-nucleo", "st,stm32h745";
/* HW resources belonging to CM4 */
chosen {
zephyr,console = &uart8;
zephyr,shell-uart = &uart8;
zephyr,sram = &sram1;
zephyr,flash = &flash1;
};
aliases {
led0 = &yellow_led;
};
};
&uart8 {
current-speed = <115200>;
status = "okay";
};