1.. _flash-debug-host-tools: 2 3Flash & Debug Host Tools 4######################## 5 6This guide describes the software tools you can run on your host workstation to 7flash and debug Zephyr applications. 8 9Zephyr's west tool has built-in support for all of these in its ``flash``, 10``debug``, ``debugserver``, and ``attach`` commands, provided your board 11hardware supports them and your Zephyr board directory's :file:`board.cmake` 12file declares that support properly. See :ref:`west-build-flash-debug` for 13more information on these commands. 14 15.. _runner_blackmagicprobe: 16 17Black Magic Probe 18***************** 19 20Black Magic Probe (BMP) is an open-source debugging hardware incorporating GDB debug 21server functionality into the firmware. 22There is no need for a GDB server program, so there is no program equivalent 23to host-tool. 24 25For more details, including usage instructions and supported targets, 26see :ref:`black-magic-probe`. 27 28.. _atmel_sam_ba_bootloader: 29.. _runner_bossac: 30 31SAM Boot Assistant (SAM-BA) 32*************************** 33 34Atmel SAM Boot Assistant (Atmel SAM-BA) allows In-System Programming (ISP) 35from USB or UART host without any external programming interface. Zephyr 36allows users to develop and program boards with SAM-BA support using 37:ref:`west <west-flashing>`. Zephyr supports devices with/without ROM 38bootloader and both extensions from Arduino and Adafruit. Full support was 39introduced in Zephyr SDK 0.12.0. 40 41The typical command to flash the board is: 42 43.. code-block:: console 44 45 west flash [ -r bossac ] [ -p /dev/ttyX ] [ --erase ] 46 47.. note:: 48 49 By default, flashing with bossac will only erase the flash pages containing 50 the flashed application, leaving other pages untouched. Should you wish to 51 erase the entire flash of the target when flashing, pass the ``--erase`` 52 parameter when flashing. 53 54Flash configuration for devices: 55 56.. tabs:: 57 58 .. tab:: With ROM bootloader 59 60 These devices don't need any special configuration. After building your 61 application, just run ``west flash`` to flash the board. 62 63 .. tab:: Without ROM bootloader 64 65 For these devices, the user should: 66 67 1. Define flash partitions required to accommodate the bootloader and 68 application image; see :ref:`flash_map_api` for details. 69 2. Have board :file:`.defconfig` file with the 70 :kconfig:option:`CONFIG_USE_DT_CODE_PARTITION` Kconfig option set to ``y`` to 71 instruct the build system to use these partitions for code relocation. 72 This option can also be set in ``prj.conf`` or any other Kconfig fragment. 73 3. Build and flash the SAM-BA bootloader on the device. 74 75 .. tab:: With compatible SAM-BA bootloader 76 77 For these devices, the user should: 78 79 1. Define flash partitions required to accommodate the bootloader and 80 application image; see :ref:`flash_map_api` for details. 81 2. Have board :file:`.defconfig` file with the 82 :kconfig:option:`CONFIG_BOOTLOADER_BOSSA` Kconfig option set to ``y``. This will 83 automatically select the :kconfig:option:`CONFIG_USE_DT_CODE_PARTITION` Kconfig 84 option which instruct the build system to use these partitions for code 85 relocation. The board :file:`.defconfig` file should have 86 :kconfig:option:`CONFIG_BOOTLOADER_BOSSA_ARDUINO` , 87 :kconfig:option:`CONFIG_BOOTLOADER_BOSSA_ADAFRUIT_UF2` or the 88 :kconfig:option:`CONFIG_BOOTLOADER_BOSSA_LEGACY` Kconfig option set to ``y`` 89 to select the right compatible SAM-BA bootloader mode. 90 These options can also be set in ``prj.conf`` or any other Kconfig fragment. 91 3. Build and flash the SAM-BA bootloader on the device. 92 93.. note:: 94 95 The :kconfig:option:`CONFIG_BOOTLOADER_BOSSA_LEGACY` Kconfig option should be used 96 as last resource. Try configure first with Devices without ROM bootloader. 97 98 99Typical flash layout and configuration 100-------------------------------------- 101 102For bootloaders that reside on flash, the devicetree partition layout is 103mandatory. For devices that have a ROM bootloader, they are mandatory when 104the application uses a storage or other non-application partition. In this 105special case, the boot partition should be omitted and code_partition should 106start from offset 0. It is necessary to define the partitions with sizes that 107avoid overlaps, always. 108 109A typical flash layout for devices without a ROM bootloader is: 110 111.. code-block:: devicetree 112 113 / { 114 chosen { 115 zephyr,code-partition = &code_partition; 116 }; 117 }; 118 119 &flash0 { 120 partitions { 121 compatible = "fixed-partitions"; 122 #address-cells = <1>; 123 #size-cells = <1>; 124 125 boot_partition: partition@0 { 126 label = "sam-ba"; 127 reg = <0x00000000 0x2000>; 128 read-only; 129 }; 130 131 code_partition: partition@2000 { 132 label = "code"; 133 reg = <0x2000 0x3a000>; 134 read-only; 135 }; 136 137 /* 138 * The final 16 KiB is reserved for the application. 139 * Storage partition will be used by FCB/LittleFS/NVS 140 * if enabled. 141 */ 142 storage_partition: partition@3c000 { 143 label = "storage"; 144 reg = <0x0003c000 0x00004000>; 145 }; 146 }; 147 }; 148 149A typical flash layout for devices with a ROM bootloader and storage 150partition is: 151 152.. code-block:: devicetree 153 154 / { 155 chosen { 156 zephyr,code-partition = &code_partition; 157 }; 158 }; 159 160 &flash0 { 161 partitions { 162 compatible = "fixed-partitions"; 163 #address-cells = <1>; 164 #size-cells = <1>; 165 166 code_partition: partition@0 { 167 label = "code"; 168 reg = <0x0 0xF0000>; 169 read-only; 170 }; 171 172 /* 173 * The final 64 KiB is reserved for the application. 174 * Storage partition will be used by FCB/LittleFS/NVS 175 * if enabled. 176 */ 177 storage_partition: partition@F0000 { 178 label = "storage"; 179 reg = <0x000F0000 0x00100000>; 180 }; 181 }; 182 }; 183 184 185Enabling SAM-BA runner 186---------------------- 187 188In order to instruct Zephyr west tool to use the SAM-BA bootloader the 189:file:`board.cmake` file must have 190``include(${ZEPHYR_BASE}/boards/common/bossac.board.cmake)`` entry. Note that 191Zephyr tool accept more entries to define multiple runners. By default, the 192first one will be selected when using ``west flash`` command. The remaining 193options are available passing the runner option, for instance 194``west flash -r bossac``. 195 196 197More implementation details can be found in the :ref:`boards` documentation. 198As a quick reference, see these three board documentation pages: 199 200 - :zephyr:board:`sam4e_xpro` (ROM bootloader) 201 - :zephyr:board:`adafruit_feather_m0_basic_proto` (Adafruit UF2 bootloader) 202 - :zephyr:board:`arduino_nano_33_iot` (Arduino bootloader) 203 - :zephyr:board:`arduino_nano_33_ble` (Arduino legacy bootloader) 204 205Enabling BOSSAC on Windows Native [Experimental] 206------------------------------------------------ 207 208Zephyr SDK´s bossac is currently supported on Linux and macOS only. Windows support 209can be achieved by using the bossac version from `BOSSA official releases`_. 210After installing using default options, the :file:`bossac.exe` must be added to 211Windows PATH. A specific bossac executable can be used by passing the 212``--bossac`` option, as follows: 213 214.. code-block:: console 215 216 west flash -r bossac --bossac="C:\Program Files (x86)\BOSSA\bossac.exe" --bossac-port="COMx" 217 218.. note:: 219 220 WSL is not currently supported. 221 222 223.. _linkserver-debug-host-tools: 224.. _runner_linkserver: 225 226LinkServer Debug Host Tools 227**************************** 228 229Linkserver is a utility for launching and managing GDB servers for NXP debug probes, 230which also provides a command-line target flash programming capabilities. 231Linkserver can be used with the `NXP MCUXpresso for Visual Studio Code`_ implementation, 232with custom debug configurations based on GNU tools or as part of a headless solution 233for continuous integration and test. LinkServer can be used with MCU-Link, LPC-Link2, 234LPC11U35-based and OpenSDA based standalone or on-board debug probes from NXP. 235 236NXP recommends installing LinkServer by using NXP's `MCUXpresso Installer`_. 237This method will also install the tools supporting the debug probes below, 238including NXP's MCU-Link and LPCScrypt tools. 239 240LinkServer is compatible with the following debug probes: 241 242- :ref:`lpclink2-cmsis-onboard-debug-probe` 243- :ref:`mcu-link-cmsis-onboard-debug-probe` 244- :ref:`opensda-daplink-onboard-debug-probe` 245 246To use LinkServer with West commands, the install folder should be added to the 247:envvar:`PATH` :ref:`environment variable <env_vars>`. The default installation 248path to add is: 249 250.. tabs:: 251 252 .. group-tab:: Linux 253 254 .. code-block:: console 255 256 /usr/local/LinkServer 257 258 .. group-tab:: Windows 259 260 .. code-block:: console 261 262 c:\nxp\LinkServer_<version> 263 264Supported west commands: 265 2661. flash 267#. debug 268#. debugserver 269#. attach 270 271Notes: 272 273 2741. Probes can be listed with LinkServer: 275 276.. code-block:: console 277 278 LinkServer probes 279 2802. With multiple debug probes attached to the host, use the 281LinkServer west runner ``--probe`` option to pass the probe index. 282 283.. code-block:: console 284 285 west flash --runner=linkserver --probe=3 286 2873. Device-specific settings can be overridden with the west runner for LinkServer with 288 the option '--override'. May be used multiple times. The format is dictated 289 by LinkServer, e.g.: 290 291.. code-block:: console 292 293 west flash --runner=linkserver --override /device/memory/5/flash-driver=MIMXRT500_SFDP_MXIC_OSPI_S.cfx 294 2954. LinkServer does not install an implicit breakpoint at the reset handler. If 296 you would like to single step from the start of their application, you 297 will need to add a breakpoint at ``main`` or the reset handler manually. 298 299.. _jlink-debug-host-tools: 300.. _runner_jlink: 301 302J-Link Debug Host Tools 303*********************** 304 305Segger provides a suite of debug host tools for Linux, macOS, and Windows 306operating systems: 307 308- J-Link GDB Server: GDB remote debugging 309- J-Link Commander: Command-line control and flash programming 310- RTT Viewer: RTT terminal input and output 311- SystemView: Real-time event visualization and recording 312 313These debug host tools are compatible with the following debug probes: 314 315- :ref:`lpclink2-jlink-onboard-debug-probe` 316- :ref:`opensda-jlink-onboard-debug-probe` 317- :ref:`mcu-link-jlink-onboard-debug-probe` 318- :ref:`jlink-external-debug-probe` 319- :ref:`stlink-v21-onboard-debug-probe` 320 321Check if your SoC is listed in `J-Link Supported Devices`_. 322 323Download and install the `J-Link Software and Documentation Pack`_ to get the 324J-Link GDB Server and Commander, and to install the associated USB device 325drivers. RTT Viewer and SystemView can be downloaded separately, but are not 326required. 327 328Note that the J-Link GDB server does not yet support Zephyr RTOS-awareness. 329 330.. _openocd-debug-host-tools: 331.. _runner_openocd: 332 333OpenOCD Debug Host Tools 334************************ 335 336OpenOCD is a community open source project that provides GDB remote debugging 337and flash programming support for a wide range of SoCs. A fork that adds Zephyr 338RTOS-awareness is included in the Zephyr SDK; otherwise see `Getting OpenOCD`_ 339for options to download OpenOCD from official repositories. 340 341These debug host tools are compatible with the following debug probes: 342 343- :ref:`opensda-daplink-onboard-debug-probe` 344- :ref:`jlink-external-debug-probe` 345- :ref:`stlink-v21-onboard-debug-probe` 346 347Check if your SoC is listed in `OpenOCD Supported Devices`_. 348 349.. note:: On Linux, openocd is available though the `Zephyr SDK 350 <https://github.com/zephyrproject-rtos/sdk-ng/releases>`_. 351 Windows users should use the following steps to install 352 openocd: 353 354 - Download openocd for Windows from here: `OpenOCD Windows`_ 355 - Copy bin and share dirs to ``C:\Program Files\OpenOCD\`` 356 - Add ``C:\Program Files\OpenOCD\bin`` to 'PATH' environment variable 357 358.. _pyocd-debug-host-tools: 359.. _runner_pyocd: 360 361pyOCD Debug Host Tools 362********************** 363 364pyOCD is an open source project from Arm that provides GDB remote debugging and 365flash programming support for Arm Cortex-M SoCs. It is distributed on PyPi and 366installed when you complete the :ref:`gs_python_deps` step in the Getting 367Started Guide. pyOCD includes support for Zephyr RTOS-awareness. 368 369These debug host tools are compatible with the following debug probes: 370 371- :ref:`lpclink2-cmsis-onboard-debug-probe` 372- :ref:`mcu-link-cmsis-onboard-debug-probe` 373- :ref:`opensda-daplink-onboard-debug-probe` 374- :ref:`stlink-v21-onboard-debug-probe` 375 376Check if your SoC is listed in `pyOCD Supported Devices`_. 377 378.. _lauterbach-trace32-debug-host-tools: 379.. _runner_trace32: 380 381Lauterbach TRACE32 Debug Host Tools 382*********************************** 383 384`Lauterbach TRACE32`_ is a product line of microprocessor development tools, 385debuggers and real-time tracer with support for JTAG, SWD, NEXUS or ETM over 386multiple core architectures, including Arm Cortex-A/-R/-M, RISC-V, Xtensa, etc. 387Zephyr allows users to develop and program boards with Lauterbach TRACE32 388support using :ref:`west <west-flashing>`. 389 390The runner consists of a wrapper around TRACE32 software, and allows a Zephyr 391board to execute a custom start-up script (Practice Script) for the different 392commands supported, including the ability to pass extra arguments from CMake. 393Is up to the board using this runner to define the actions performed on each 394command. 395 396Install Lauterbach TRACE32 Software 397----------------------------------- 398 399Download Lauterbach TRACE32 software from the `Lauterbach TRACE32 download website`_ 400(registration required) and follow the installation steps described in 401`Lauterbach TRACE32 Installation Guide`_. 402 403Flashing and Debugging 404---------------------- 405 406Set the :ref:`environment variable <env_vars>` :envvar:`T32_DIR` to the TRACE32 407system directory. Then execute ``west flash`` or ``west debug`` commands to 408flash or debug the Zephyr application as detailed in :ref:`west-build-flash-debug`. 409The ``debug`` command launches TRACE32 GUI to allow debug the Zephyr 410application, while the ``flash`` command hides the GUI and perform all 411operations in the background. 412 413By default, the ``t32`` runner will launch TRACE32 using the default 414configuration file named ``config.t32`` located in the TRACE32 system 415directory. To use a different configuration file, supply the argument 416``--config CONFIG`` to the runner, for example: 417 418.. code-block:: console 419 420 west flash --config myconfig.t32 421 422For more options, run ``west flash --context -r t32`` to print the usage. 423 424Zephyr RTOS Awareness 425--------------------- 426 427To enable Zephyr RTOS awareness follow the steps described in 428`Lauterbach TRACE32 Zephyr OS Awareness Manual`_. 429 430.. _nxp-s32-debug-host-tools: 431.. _runner_nxp_s32dbg: 432 433NXP S32 Debug Probe Host Tools 434****************************** 435 436:ref:`nxp-s32-debug-probe` is designed to work in conjunction with 437`NXP S32 Design Studio for S32 Platform`_. 438 439Download (registration required) NXP S32 Design Studio for S32 Platform and 440follow the `S32 Design Studio for S32 Platform Installation User Guide`_ to get 441the necessary debug host tools and associated USB device drivers. 442 443Note that Zephyr RTOS-awareness support for the NXP S32 GDB server depends on 444the target device. Consult the product release notes for more information. 445 446Supported west commands: 447 4481. debug 449#. debugserver 450#. attach 451 452Basic usage 453----------- 454 455Before starting, add NXP S32 Design Studio installation directory to the system 456:ref:`PATH environment variable <env_vars>`. Alternatively, it can be passed to 457the runner on each invocation via ``--s32ds-path`` as shown below: 458 459.. tabs:: 460 461 .. group-tab:: Linux 462 463 .. code-block:: console 464 465 west debug --s32ds-path=/opt/NXP/S32DS.3.6 466 467 .. group-tab:: Windows 468 469 .. code-block:: console 470 471 west debug --s32ds-path=C:\NXP\S32DS.3.6 472 473If multiple S32 debug probes are connected to the host via USB, the runner will 474ask the user to select one via command line prompt before continuing. The 475connection string for the probe can be also specified when invoking the runner 476via ``--dev-id=<connection-string>``. Consult NXP S32 debug probe user manual 477for details on how to construct the connection string. For example, if using a 478probe with serial ID ``00:04:9f:00:ca:fe``: 479 480.. code-block:: console 481 482 west debug --dev-id='s32dbg:00:04:9f:00:ca:fe' 483 484It is possible to pass extra options to the debug host tools via ``--tool-opt``. 485When executing ``debug`` or ``attach`` commands, the tool options will be passed 486to the GDB client only. When executing ``debugserver``, the tool options will be 487passed to the GDB server. For example, to load a Zephyr application to SRAM and 488afterwards detach the debug session: 489 490.. code-block:: console 491 492 west debug --tool-opt='--batch' 493 494Requirements 495------------ 496 497- **S32 Design Studio version**: 3.6.0 or newer. 498- **S32DebugProbe OS (firmware)**: 1.1.0 or newer. 499 500S32 Debug Probe OS Upgrade Procedure 501------------------------------------ 502 503Refer to the “Reprogramming S32 Debug Probe Firmware Images” chapter 504in the `S32 Debug Probe User Guide`_ to upgrade the OS of the S32DebugProbe. 505 506.. _runner_probe_rs: 507 508probe-rs Debug Host Tools 509************************* 510 511probe-rs is an open-source embedded toolkit written in Rust. It provides 512out-of-the-box support for a variety of debug probes, including CMSIS-DAP, 513ST-Link, SEGGER J-Link, FTDI and built-in USB-JTAG interface on ESP32 devices. 514 515Check `probe-rs Installation`_ for more setup details. 516 517Check if your SoC is listed in `probe-rs Supported Devices`_. 518 519.. _runner_rfp: 520 521Renesas Flash Programmer (RFP) Host Tools 522***************************************** 523 524Renesas provides `Renesas Flash Programmer`_ as an official programming tool for Renesas boards 525using the Renesas standard boot firmware. It is available as a GUI and CLI. 526 527For boards configured with the ``rfp`` west runner, the RFP CLI can be easily used to flash Zephyr. 528 529Supported west commands: 530 5311. flash 532 533Once downloaded, if ``rfp-cli`` is not placed somewhere in your system PATH, you can pass the location 534to ``rfp-cli`` when flashing: 535 536.. code-block:: console 537 538 west flash --rfp-cli ~/Downloads/RFP_CLI_Linux_V31800_x64/linux-x64/rfp-cli 539 540.. _stm32cubeclt-host-tools: 541.. _runner_stlink_gdbserver: 542 543STM32CubeCLT Flash & Debug Host Tools 544************************************* 545 546STMicroelectronics provides `STM32CubeCLT`_ as an official all-in-one toolset compatible with 547Linux |reg|, macOS |reg| and Windows |reg|, allowing the use of STMicroelectronics proprietary 548tools within third-party development environments. 549 550It notably provides a GDB debugging server (the *ST-LINK GDB Server*) that can be used to debug 551applications on STM32 boards thanks to on-board or external ST-LINK debug probes. 552 553It is compatible with the following debug probes: 554 555- :ref:`stlink-v21-onboard-debug-probe` 556- Standalone `ST-LINK-V2`_, `ST-LINK-V3`_, and `STLINK-V3PWR`_ probes 557 558Install STM32CubeCLT 559-------------------- 560 561The easiest way to get the ST-LINK GDB Server is to install `STM32CubeCLT`_ from STMicroelectronics' website. 562A valid email address is needed to receive the downloading link. 563 564Basic usage 565----------- 566 567The ST-Link GDB Server can be used through the ``west attach``, ``west debug`` or ``west debugserver`` commands 568to debug Zephyr applications. 569 570.. code-block:: console 571 572 west debug --runner stlink_gdbserver 573 574.. note:: 575 576 The `STM32CubeProgrammer`_ version contained in the `STM32CubeCLT`_ installation can also be used to flash 577 applications. To do so, the dedicated :ref:`STM32CubeProgrammer runner <runner_stm32cubeprogrammer>` should 578 be used instead of ``stlink_gdbserver``, as done in the following example: 579 580 .. code-block:: console 581 582 west flash --runner stm32cubeprogrammer 583 584.. _stm32cubeprog-flash-host-tools: 585.. _runner_stm32cubeprogrammer: 586 587STM32CubeProgrammer Flash Host Tools 588************************************ 589 590STMicroelectronics provides `STM32CubeProgrammer`_ (STM32CubeProg) as an official programming tool 591for STM32 boards on Linux |reg|, macOS |reg|, and Windows |reg| operating systems. 592 593It provides an easy-to-use and efficient environment for reading, writing, and verifying device memory 594through both the debug interface (JTAG and SWD) and the bootloader interface (UART and USB DFU, I2C, SPI, and CAN). 595 596It offers a wide range of features to program STM32 internal memories (such as flash, RAM, and OTP) 597as well as external memories. 598 599It also allows option programming and upload, programming content verification, and programming automation 600through scripting. 601 602It is delivered in GUI (graphical user interface) and CLI (command-line interface) versions. 603 604It is compatible with the following debug probes: 605 606- :ref:`stlink-v21-onboard-debug-probe` 607- :ref:`jlink-external-debug-probe` 608- Standalone `ST-LINK-V2`_, `ST-LINK-V3`_, and `STLINK-V3PWR`_ probes 609 610Install STM32CubeProgrammer 611--------------------------- 612 613The easiest way to get `STM32CubeProgrammer`_ is to download it from STMicroelectronics website. 614A valid email address is needed to receive the downloading link. 615 616Alternatively, it can be installed as part of `STM32CubeCLT`_ all-in-one multi-OS command-line toolset 617which also includes GDB debugger client and server. 618 619If you have STM32CubeIDE installed on your system, then STM32CubeProg is already present. 620 621Basic usage 622----------- 623 624`STM32CubeProgrammer`_ is setup as the default west runner for all active STM32 boards supported by Zephyr. 625It can be used through the ``west flash`` command to flash Zephyr applications. 626 627.. code-block:: console 628 629 west flash --runner stm32cubeprogrammer 630 631For advanced usage via the GUI or CLI, check out the `STM32CubeProgrammer User Manual`_. 632 633.. _runner_uf2: 634 635UF2 Uploader 636************ 637 638The uf2 runner supports flashing some boards using the UF2 (USB Flashing Format). 639UF2 is a user-friendly file format designed for drag-and-drop programming via a USB mass storage device. 640 641It relies on the target device entering a special bootloader mode where it appears to the host 642as a USB mass storage device. 643Once in this mode, the application image can be uploaded by copying a ``.uf2`` file to the 644mounted volume. 645 646.. code-block:: console 647 648 west flash --runner uf2 649 650If the UF2 volume is not automatically detected, you may need to manually specify the mount point 651using the ``--device`` option: 652 653For more about the UF2 format and its tooling, see `USB Flashing Format (UF2)`_. 654 655.. _J-Link Software and Documentation Pack: 656 https://www.segger.com/downloads/jlink/#J-LinkSoftwareAndDocumentationPack 657 658.. _J-Link Supported Devices: 659 https://www.segger.com/downloads/supported-devices.php 660 661.. _Getting OpenOCD: 662 https://openocd.org/pages/getting-openocd.html 663 664.. _OpenOCD Supported Devices: 665 https://github.com/zephyrproject-rtos/openocd/tree/latest/tcl/target 666 667.. _pyOCD Supported Devices: 668 https://github.com/pyocd/pyOCD/tree/main/pyocd/target/builtin 669 670.. _OpenOCD Windows: 671 https://gnutoolchains.com/arm-eabi/openocd/ 672 673.. _Lauterbach TRACE32: 674 https://www.lauterbach.com/ 675 676.. _Lauterbach TRACE32 download website: 677 https://www.lauterbach.com/download_trace32.html 678 679.. _Lauterbach TRACE32 Installation Guide: 680 https://www2.lauterbach.com/pdf/installation.pdf 681 682.. _Lauterbach TRACE32 Zephyr OS Awareness Manual: 683 https://www2.lauterbach.com/pdf/rtos_zephyr.pdf 684 685.. _BOSSA official releases: 686 https://github.com/shumatech/BOSSA/releases 687 688.. _NXP MCUXpresso for Visual Studio Code: 689 https://www.nxp.com/design/software/development-software/mcuxpresso-software-and-tools-/mcuxpresso-for-visual-studio-code:MCUXPRESSO-VSC 690 691.. _MCUXpresso Installer: 692 https://github.com/nxp-mcuxpresso/vscode-for-mcux/wiki/Dependency-Installation 693 694.. _NXP S32 Design Studio for S32 Platform: 695 https://www.nxp.com/design/software/development-software/s32-design-studio-ide/s32-design-studio-for-s32-platform:S32DS-S32PLATFORM 696 697.. _Renesas Flash Programmer: 698 https://www.renesas.com/en/software-tool/renesas-flash-programmer-programming-gui 699 700.. _S32 Design Studio for S32 Platform Installation User Guide: 701 https://www.nxp.com/webapp/Download?colCode=S32DSIG 702 703.. _S32 Debug Probe User Guide: 704 https://www.nxp.com/docs/en/user-guide/S32DBGUG.pdf 705 706.. _probe-rs Installation: 707 https://probe.rs/docs/getting-started/installation/ 708 709.. _probe-rs Supported Devices: 710 https://probe.rs/targets/ 711 712.. _STM32CubeCLT: 713 https://www.st.com/en/development-tools/stm32cubeclt.html 714 715.. _STM32CubeProgrammer: 716 https://www.st.com/en/development-tools/stm32cubeprog.html 717 718.. _STM32CubeProgrammer User Manual: 719 https://www.st.com/resource/en/user_manual/um2237-stm32cubeprogrammer-software-description-stmicroelectronics.pdf 720 721.. _ST-LINK-V2: 722 https://www.st.com/en/development-tools/st-link-v2.html 723 724.. _ST-LINK-V3: 725 https://www.st.com/en/development-tools/stlink-v3set.html 726 727.. _STLINK-V3PWR: 728 https://www.st.com/en/development-tools/stlink-v3pwr.html 729 730.. _USB Flashing Format (UF2): 731 https://github.com/microsoft/uf2 732