Difference between revisions of "J-Link STM32 Utility"

From SEGGER Wiki
Jump to: navigation, search
(Command Line Options)
(Parameter)
Line 101: Line 101:
 
|-
 
|-
 
| style="text-align:right;" | 11 || STM32L4x6xx
 
| style="text-align:right;" | 11 || STM32L4x6xx
  +
|-
  +
| style="text-align:right;" | 12 || STM32G0x0xx
  +
|-
  +
| style="text-align:right;" | 13 || STM32G0x1xx
  +
|-
  +
| style="text-align:right;" | 14 || STM32G4xxxx
 
|-
 
|-
 
|}
 
|}
  +
 
=== Example ===
 
=== Example ===
 
JLinkSTM32.exe -SetDeviceFamily 10 // Selects STM32L1 series
 
JLinkSTM32.exe -SetDeviceFamily 10 // Selects STM32L1 series

Revision as of 12:27, 8 October 2020

J-Link STM32 Unlock

J-Link STM32 Unlock (JLinkSTM32.exe) is a free command line based tool which can be used with STM32 devices, to disable the hardware watchdog (activated by programming the option bytes). Additionally, on connect, it unsecures a read-protected STM32 device by re-programming the option bytes to factory defaults. The J-Link STM32 Unlock utility is part of the J-Link Software and Documentation Pack, which is available for download on the SEGGER webpage.

Note: Unsecuring a secured device will cause a mass erase of the flash memory.


Command Line Options

The following command line options can be passed to the J-Link STM32 Unlock utility.

Command line option Explanation
-IP Selects IP as host interface to connect to J-Link. Default host interface is USB.
-SelectEmuBySN See -USB
-USB Connects to a J-Link with a specific S/N over USB
-Speed Starts the J-Link STM32 Unlock Utility with a given initial interface speed.
-SetPowerTarget Enables target power supply via pin 19.
-SetDeviceFamily Specifies a device family
-Exit J-Link STM32 Unlock will close automatically

-IP

Selects IP as host interface to connect to J-Link. Default host interface is USB.

Syntax

-IP <IPAddr>

Example

JLinkSTM32.exe -IP 192.168.1.17

Additional information

To select from a list of all available emulators on Ethernet, please use * as <IPAddr>.

-USB

Connect to a J-Link with a specific serial number via USB. Useful if multiple J-Links are connected to the same PC.

Syntax

-USB <SerialNo>

Example

JLinkSTM32.exe -USB 580011111

-Speed

Starts J-Link STM32 Unlock Utility with a given initial speed. Available parameters are "adaptive", "auto" or a freely selectable integer value in kHz. It is recommended to use either a fixed speed or, if it is available on the target, adaptive speeds. Default interface speed is 1000 kHz.

Syntax

-Speed <Speed_kHz>

Example

-Speed 1000

-SetPowerTarget

The connected debug probe will power the target via pin 19 of the debug connector.

Syntax

-SetPowerTarget <Mode>

Example

JLinkSTM32.exe -SetPowerTarget 1

-SetDeviceFamily

This command allows to specify a device family, so that no user input is required to start the unlocking process.

Syntax

-SetDeviceFamily <Parameter>

Parameter

There are two different options to specify the device family to be used:
a) Pass the list index from the list which shows all supported families on start up
b) Pass the defined device name

ID Device
1 STM32F0xxxx
2 STM32F1xxxx
3 STM32F2xxxx
4 STM32F3xxxx
5 STM32F4xxxx
6 STM32F72_F73xxx
7 STM32F74_F75xxx
8 STM32F76_F77xxx
9 STM32L0xxxx
10 STM32L1xxxx
11 STM32L4x6xx
12 STM32G0x0xx
13 STM32G0x1xx
14 STM32G4xxxx

Example

JLinkSTM32.exe -SetDeviceFamily 10          // Selects STM32L1 series
JLinkSTM32.exe -SetDeviceFamily STM32F2xxxx // Selects STM32F2 series

-Exit

In general, the J-Link STM32 utility waits at the end of the unlock process for any user input before application closes. This option allows to skip this step, so that the utility closes automatically.

Syntax

-Exit <Mode>

Example

JLinkSTM32.exe -Exit 1 // J-Link STM32 utility closes automatically