-
Notifications
You must be signed in to change notification settings - Fork 6.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
board: arm: nucleo-l4r5zi: flashing with STM32CubeProgrammer #67174
board: arm: nucleo-l4r5zi: flashing with STM32CubeProgrammer #67174
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Beyond the mentioned typo, and as a non-blocking comment, it looks like it might make sense to extract some common "ST board flashing instructions" doc snippets (a la
zephyr/boards/x86/intel_adl/doc/up_squared_pro_7000.rst
Lines 69 to 71 in c25ac48
.. include:: ../../common/efi_boot.rst | |
:start-after: start_include_here | |
IMO aiming for something like
zephyr/boards/arm/nucleo_u575zi_q/doc/index.rst
Lines 246 to 260 in c25ac48
Board is configured to be flashed using west STM32CubeProgrammer runner. | |
Installation of `STM32CubeProgrammer`_ is then required to flash the board. | |
Alternatively, openocd (provided in Zephyr SDK), JLink and pyocd 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 ``-r openocd``, ``-r jlink`` or ``-r pyocd``. | |
For pyocd additional target information needs to be installed. | |
This can be done by executing the following commands. | |
.. code-block:: console | |
$ pyocd pack --update | |
$ pyocd pack --install stm32u5 | |
stm32cubeprogrammer
is supported. Maybe you can at least clarify that bit, and briefly mention other available options (openocd
and jlink
)?
Add the possibility to flash nucleo-l4r5zi board using west STM32CubeProgrammer runner. Signed-off-by: Abderrahmane Jarmouni <[email protected]>
e143d65
to
a4d709e
Compare
Thanks @kartben for the suggestion. We'll work on that. |
This patch adds the possibility to flash nucleo-l4r5zi board using STM32CubeProgrammer.