Commit 00e9195f authored by Francois Ramu's avatar Francois Ramu Committed by Benjamin Cabé
Browse files

boards: st: nucleo_h7s3l78 nucleo144 board



Add the nucleo_h7s3l8 board from STMicroelectronics
This Nucleo 144 board has stm32h7s3L8 mcu.

Signed-off-by: default avatarFrancois Ramu <francois.ramu@st.com>
parent 72694a9d
Loading
Loading
Loading
Loading
+16 −0
Original line number Diff line number Diff line
# STM32H7S3L8 NUCLEO board configuration
#
# Copyright (c) 2024 STMicroelectronics
#
# SPDX-License-Identifier: Apache-2.0

if BOARD_NUCLEO_H7S3L8

if NETWORKING

config NET_L2_ETHERNET
	default y

endif # NETWORKING

endif # BOARD_NUCLEO_H7S3L8
+5 −0
Original line number Diff line number Diff line
# Copyright (c) 2024 STMicroelectronics
# SPDX-License-Identifier: Apache-2.0

config BOARD_NUCLEO_H7S3L8
	select SOC_STM32H7S3XX
+39 −0
Original line number Diff line number Diff line
/*
 * Copyright (c) 2024 STMicroelectronics
 * SPDX-License-Identifier: Apache-2.0
 */

/ {
	arduino_header: connector {
		compatible = "arduino-header-r3";
		#gpio-cells = <2>;
		gpio-map-mask = <0xffffffff 0xffffffc0>;
		gpio-map-pass-thru = <0 0x3f>;
		gpio-map = <0 0 &gpioa 3 0>,	/* A0 */
			   <1 0 &gpioc 0 0>,	/* A1 */
			   <2 0 &gpioc 3 0>,	/* A2 */
			   <3 0 &gpioc 4 0>,	/* A3 */
			   <4 0 &gpioc 5 0>,	/* A4 */
			   <5 0 &gpiof 11 0>,	/* A5 */
			   <6 0 &gpioa 10 0>,	/* D0 */
			   <7 0 &gpiob 14 0>,	/* D1 */
			   <8 0 &gpiof 15 0>,	/* D2 */
			   <9 0 &gpioe 13 0>,	/* D3 */
			   <10 0 &gpiof 3 0>,	/* D4 */
			   <11 0 &gpioe 11 0>,	/* D5 */
			   <12 0 &gpioe 9 0>,	/* D6 */
			   <13 0 &gpiof 4 0>,	/* D7 */
			   <14 0 &gpiof 5 0>,	/* D8 */
			   <15 0 &gpiod 15 0>,	/* D9 */
			   <16 0 &gpiod 14 0>,	/* D10 */
			   <17 0 &gpiob 5 0>,	/* D11 */
			   <18 0 &gpioa 6 0>,	/* D12 */
			   <19 0 &gpioa 5 0>,	/* D13 */
			   <20 0 &gpiob 9 0>,	/* D14 */
			   <21 0 &gpiob 8 0>;	/* D15 */
	};
};

arduino_i2c: &i2c1 {};
arduino_spi: &spi1 {};
arduino_serial: &usart1 {};
+10 −0
Original line number Diff line number Diff line
# SPDX-License-Identifier: Apache-2.0

# keep first
board_runner_args(stm32cubeprogrammer "--port=swd" "--reset-mode=hw")

board_runner_args(openocd --target-handle=_CHIPNAME.cpu0)

# keep first
include(${ZEPHYR_BASE}/boards/common/stm32cubeprogrammer.board.cmake)
include(${ZEPHYR_BASE}/boards/common/openocd.board.cmake)
+6 −0
Original line number Diff line number Diff line
board:
  name: nucleo_h7s3l8
  full_name: Nucleo H7S3L8
  vendor: st
  socs:
    - name: stm32h7s3xx
Loading