boards: st: update doc
Update forgotten boards following PR 75284 Signed-off-by: Abderrahmane Jarmouni <git@jarmouni.me>
This commit is contained in:
parent
a4169e6141
commit
77f025dd19
4 changed files with 44 additions and 10 deletions
|
|
@ -198,15 +198,19 @@ This probe allows to flash the board using various tools.
|
|||
Flashing
|
||||
========
|
||||
|
||||
Board is configured to be flashed using west STM32CubeProgrammer runner.
|
||||
Installation of `STM32CubeProgrammer`_ is then required to flash the board.
|
||||
The board is configured to be flashed using west `STM32CubeProgrammer`_ runner,
|
||||
so its :ref:`installation <stm32cubeprog-flash-host-tools>` is required.
|
||||
|
||||
Alternatively, pyocd or jlink via an external probe can also be used to flash
|
||||
and debug the board if west is told to use it as runner, which can be done by
|
||||
passing either or ``-r pyocd``, or ``-r jlink``.
|
||||
Alternatively, JLink or pyOCD can also be used to flash the board using
|
||||
the ``--runner`` (or ``-r``) option:
|
||||
|
||||
For pyocd additional target information needs to be installed.
|
||||
This can be done by executing the following commands.
|
||||
.. code-block:: console
|
||||
|
||||
$ west flash --runner pyocd
|
||||
$ west flash --runner jlink
|
||||
|
||||
For pyOCD, additional target information needs to be installed
|
||||
by executing the following pyOCD commands:
|
||||
|
||||
.. code-block:: console
|
||||
|
||||
|
|
|
|||
|
|
@ -96,12 +96,29 @@ COM port interface. Default communication settings are 115200 8N1.
|
|||
Programming and Debugging
|
||||
*************************
|
||||
|
||||
STM32H750B Discovery kit includes an ST-LINK-V3E embedded debug tool interface.
|
||||
This probe allows flashing and debugging the board using various tools.
|
||||
|
||||
See :ref:`build_an_application` for more information about application builds.
|
||||
|
||||
|
||||
Flashing
|
||||
========
|
||||
|
||||
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
|
||||
|
||||
Flashing an application to STM32H750B_DK
|
||||
----------------------------------------
|
||||
|
||||
Connect the STM32H750B-DK to your host computer using the ST-LINK
|
||||
USB port, then run a serial host program to connect with the board. For example:
|
||||
|
||||
|
|
@ -147,3 +164,6 @@ You can debug an application in the usual way. Here is an example for the
|
|||
|
||||
.. _STM32H750xx datasheet:
|
||||
https://www.st.com/resource/en/datasheet/stm32h750ib.pdf
|
||||
|
||||
.. _STM32CubeProgrammer:
|
||||
https://www.st.com/en/development-tools/stm32cubeprog.html
|
||||
|
|
|
|||
|
|
@ -242,7 +242,7 @@ This can be done by executing the following commands.
|
|||
|
||||
|
||||
Flashing an application to STM32U083C_DK
|
||||
------------------------------------------
|
||||
----------------------------------------
|
||||
|
||||
Connect the STM32U083C_DK to your host computer using the USB port.
|
||||
Then build and flash an application. Here is an example for the
|
||||
|
|
|
|||
|
|
@ -142,8 +142,18 @@ This probe allows to flash and debug the board using various tools.
|
|||
Flashing
|
||||
========
|
||||
|
||||
Board is configured to be flashed using west STM32CubeProgrammer runner.
|
||||
Installation of `STM32CubeProgrammer`_ is then required to flash the board.,
|
||||
The board is configured to be flashed using west `STM32CubeProgrammer`_ runner,
|
||||
so its :ref:`installation <stm32cubeprog-flash-host-tools>` is required.
|
||||
|
||||
Alternatively, OpenOCD can also be used to flash the board using
|
||||
the ``--runner`` (or ``-r``) option:
|
||||
|
||||
.. code-block:: console
|
||||
|
||||
$ west flash --runner openocd
|
||||
|
||||
Flashing an application to STM32U5A9J_DK
|
||||
----------------------------------------
|
||||
|
||||
Connect the STM32U5A9J Discovery board to your host computer using the USB
|
||||
port, then run a serial host program to connect with your Discovery
|
||||
|
|
|
|||
Loading…
Reference in a new issue