Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions boards/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -1916,6 +1916,15 @@ config ARCH_BOARD_NUCLEO_H743ZI
---help---
STMicro Nucleo H743ZI board based on the STMicro STM32H743ZI MCU.

config ARCH_BOARD_NUCLEO_H753ZI
bool "STM32H753 Nucleo H753ZI"
depends on ARCH_CHIP_STM32H753ZI
select ARCH_HAVE_LEDS
select ARCH_HAVE_BUTTONS
select ARCH_HAVE_IRQBUTTONS
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

spaces -> tab.

---help---
STMicro Nucleo H753ZI board based on the STMicro STM32H753ZI MCU.

config ARCH_BOARD_NUCLEO_H743ZI2
bool "STM32H743 Nucleo H743ZI2"
depends on ARCH_CHIP_STM32H743ZI
Expand Down Expand Up @@ -3690,6 +3699,7 @@ config ARCH_BOARD
default "weact-stm32h743" if ARCH_BOARD_WEACT_STM32H743
default "weact-stm32h750" if ARCH_BOARD_WEACT_STM32H750
default "nucleo-h743zi" if ARCH_BOARD_NUCLEO_H743ZI
default "nucleo-h753zi" if ARCH_BOARD_NUCLEO_H753ZI
default "nucleo-h743zi2" if ARCH_BOARD_NUCLEO_H743ZI2
default "nucleo-h745zi" if ARCH_BOARD_NUCLEO_H745ZI
default "stm32h745i-disco" if ARCH_BOARD_STM32H745I_DISCO
Expand Down Expand Up @@ -4425,6 +4435,9 @@ endif
if ARCH_BOARD_NUCLEO_H743ZI
source "boards/arm/stm32h7/nucleo-h743zi/Kconfig"
endif
if ARCH_BOARD_NUCLEO_H753ZI
source "boards/arm/stm32h7/nucleo-h753zi/Kconfig"
endif
if ARCH_BOARD_NUCLEO_H743ZI2
source "boards/arm/stm32h7/nucleo-h743zi2/Kconfig"
endif
Expand Down
23 changes: 23 additions & 0 deletions boards/arm/stm32h7/nucleo-h753zi/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# ##############################################################################
# boards/arm/stm32h7/nucleo-h753zi/CMakeLists.txt
#
# SPDX-License-Identifier: Apache-2.0
#
# Licensed to the Apache Software Foundation (ASF) under one or more contributor
# license agreements. See the NOTICE file distributed with this work for
# additional information regarding copyright ownership. The ASF licenses this
# file to you under the Apache License, Version 2.0 (the "License"); you may not
# use this file except in compliance with the License. You may obtain a copy of
# the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations under
# the License.
#
# ##############################################################################

add_subdirectory(src)
Loading
Loading