boards/st/nucleo_h723zg/doc/index.rst
.. zephyr:board:: nucleo_h723zg
Overview
The STM32 Nucleo-144 board provides an affordable and flexible way for users to try out new concepts and build prototypes by choosing from the various combinations of performance and power consumption features, provided by the STM32 microcontroller. For the compatible boards, the internal or external SMPS significantly reduces power consumption in Run mode.
The ST Zio connector, which extends the ARDUINO® Uno V3 connectivity, and the ST morpho headers provide an easy means of expanding the functionality of the Nucleo open development platform with a wide choice of specialized shields. The STM32 Nucleo-144 board does not require any separate probe as it integrates the ST-LINK V3 debugger/programmer.
The STM32 Nucleo-144 board comes with the STM32 comprehensive free software libraries and examples available with the STM32Cube MCU Package.
Key Features
STM32 microcontroller in LQFP144 package
Ethernet compliant with IEEE-802.3-2002 (depending on STM32 support)
USB OTG or full-speed device (depending on STM32 support)
3 user LEDs
2 user and reset push-buttons
32.768 kHz crystal oscillator
Board connectors:
USB with Micro-AB
Ethernet RJ45 (depending on STM32 support)
SWDST Zio connector including Arduino* Uno V3ST
ST morpho expansion
Flexible power-supply options: ST-LINK USB VBUS or external sources
External or internal SMPS to generate Vcore logic supply
On-board ST-LINK/V3 debugger/programmer with USB re-enumeration
capability: mass storage, virtual COM port and debug port
USB OTG full speed or device only
More information about the board can be found at the Nucleo H723ZG website_.
Hardware
Nucleo H723ZG provides the following hardware components:
.. zephyr:board-supported-hw::
For more details please refer to STM32 Nucleo-144 board User Manual_.
The Nucleo H723ZG board features a ST Zio connector (extended Arduino Uno V3) and a ST morpho connector. Board is configured as follows:
Nucleo H723ZG System Clock could be driven by an internal or external oscillator, as well as the main PLL clock. By default, the System clock is driven by the PLL clock at 550MHz, driven by an 8MHz high-speed external clock.
Nucleo H723ZG board has 4 UARTs and 4 USARTs. The Zephyr console output is assigned to UART3. Default settings are 115200 8N1.
In order to test backup SRAM you may want to disconnect VBAT from VDD. You can
do it by removing SB52 jumper on the back side of the board.
The Nucleo H723ZG board does not have any onboard CAN transceiver. In order to use the FDCAN bus on this board, an external CAN bus transceiver must be connected to pins PD0 (RX) and PD1 (TX).
Programming and Debugging
.. zephyr:board-supported-runners::
Nucleo H723ZG board includes an ST-LINK/V3 embedded debug tool interface.
.. note::
Check if your ST-LINK V3 has newest FW version. It can be done with STM32CubeProgrammer_
The board is configured to be flashed using west STM32CubeProgrammer_ runner,
so its :ref:installation <stm32cubeprog-flash-host-tools> is required.
Alternatively, OpenOCD or JLink can also be used to flash the board using
the --runner (or -r) option:
.. code-block:: console
$ west flash --runner openocd $ west flash --runner jlink
First, connect the NUCLEO-H723ZG to your host computer using the USB port to prepare it for flashing. Then build and flash your application.
Here is an example for the :zephyr:code-sample:hello_world application.
Run a serial host program to connect with your NUCLEO-H723ZG board.
.. code-block:: console
$ minicom -b 115200 -D /dev/ttyACM0
or use screen:
.. code-block:: console
$ screen /dev/ttyACM0 115200
Build and flash the application:
.. zephyr-app-commands:: :zephyr-app: samples/hello_world :board: nucleo_h723zg :goals: build flash
You should see the following message on the console:
.. code-block:: console
$ Hello World! nucleo_h723zg
Blinky example can also be used:
.. zephyr-app-commands:: :zephyr-app: samples/basic/blinky :board: nucleo_h723zg :goals: build flash
You can debug an application in the usual way. Here is an example for the
:zephyr:code-sample:hello_world application.
.. zephyr-app-commands:: :zephyr-app: samples/hello_world :board: nucleo_h723zg :maybe-skip-config: :goals: debug
.. _Nucleo H723ZG website: https://www.st.com/en/evaluation-tools/nucleo-h723zg.html
.. _STM32 Nucleo-144 board User Manual: https://www.st.com/resource/en/user_manual/dm00499160-stm32h7-nucleo144-boards-mb1364-stmicroelectronics.pdf
.. _STM32H723ZG on www.st.com: https://www.st.com/en/microcontrollers-microprocessors/stm32h723zg.html
.. _STM32H723 reference manual: https://www.st.com/resource/en/reference_manual/dm00603761-stm32h723733-stm32h725735-and-stm32h730-value-line-advanced-armbased-32bit-mcus-stmicroelectronics.pdf
.. _OpenOCD installing Debug Version: https://github.com/zephyrproject-rtos/openocd
.. _OpenOCD installing with ST-LINK V3 support: https://mbd.kleier.net/integrating-st-link-v3.html
.. _STM32CubeIDE: https://www.st.com/en/development-tools/stm32cubeide.html
.. _STM32CubeProgrammer: https://www.st.com/en/development-tools/stm32cubeprog.html