Difference between revisions of "J-Link Multiple Flashloader"

From SEGGER Wiki
Jump to: navigation, search
(How to)
(How to)
Line 40: Line 40:
 
The [[J-Link web control panel]] features a GUI access to easily select a different flashloader. This method requires that a [[UM08001_J-Link_/_J-Trace_User_Guide#J-Link_settings_file|settings file]] has been specified for J-Link.
 
The [[J-Link web control panel]] features a GUI access to easily select a different flashloader. This method requires that a [[UM08001_J-Link_/_J-Trace_User_Guide#J-Link_settings_file|settings file]] has been specified for J-Link.
 
==== How to ====
 
==== How to ====
  +
[[File: Web_control_panel_select_flashloader.png | thumb | left | Example for STM32H743XI]]
 
# Start the debug session with a settings file specified
 
# Start the debug session with a settings file specified
 
# Open J-Link web control panel
 
# Open J-Link web control panel
Line 45: Line 46:
 
# Select a different loader for the desired flashbank from the drop-down menu
 
# Select a different loader for the desired flashbank from the drop-down menu
 
# Restart the debug session
 
# Restart the debug session
[[File: Web_control_panel_select_flashloader.png | 500px | thumb | left | Example for STM32H743XI]]<br>
 
   
 
== Specifying multiple loader via XML ==
 
== Specifying multiple loader via XML ==

Revision as of 08:30, 6 July 2022

J-Link features support for multiple flashloader per flashbank. Additionally to the devices where J-Link already has built-in support for multiple loader, the user may choose to add support for a different flashloader.

Use case

Having multiple flashloader for the same device can be useful e.g. if a SPI flashbank shall be programmed, but the default flashloader uses a different pin configuration compared to the hardware. In this case selecting a different flashloader with a compatible pin configuration can be the solution.

Selecting a specific flashloader

There are three ways in which the user may select one of the available flashloaders.

Note:
By default the first flashloader on the list of available loaders is selected.

Command line parameter

The device name of the used device can be extended with the flashbank address and the loader name.

Syntax

-device <DeviceName>?BankAddr=<FlashBankBase>&Loader=<LoaderName>

Parameter Meaning
DeviceName The device name.
FlashBankBase The base address of the flashbank for which a different loader should be used.
LoaderName The name of the loader which should be used.

Example

-device STM32H743ZI?BankAddr=0x90000000&Loader=CLK@PF10_nCS@PB6_D0@PF8_D1@PF9_D2@PF7_D3@PF6

J-Link Script File

With the J-Link Script File function JLINK_ExecCommand() a different loader can be selected.

Syntax

JLINK_ExecCommand("DEVICE_SelectLoader BankAddr=<FlashBankBase> Loader=<LoaderName>");

Parameter Meaning
FlashBankBase The base address of the flashbank for which a different loader should be used.
LoaderName The name of the loader which should be used.

Example

JLINK_ExecCommand("DEVICE_SelectLoader BankAddr=0x90000000 Loader=CLK@PF10_nCS@PB6_D0@PF8_D1@PF9_D2@PF7_D3@PF6");

J-Link web control panel

The J-Link web control panel features a GUI access to easily select a different flashloader. This method requires that a settings file has been specified for J-Link.

How to

Example for STM32H743XI
  1. Start the debug session with a settings file specified
  2. Open J-Link web control panel
  3. Navigate to the "Flash" tab
  4. Select a different loader for the desired flashbank from the drop-down menu
  5. Restart the debug session

Specifying multiple loader via XML

With attributes in JLinkDevices.xml files it is possible for the user to add their own flashloader to the list of selectable loaders. For more information, please see the JLinkDevices section of the Open Flashloader article.