Open source version of the STMicroelectronics STLINK Tools
 
 
 
 
 
Go to file
nightwalker-87 6f934a396e Whitespace cleanup 2020-04-15 16:20:17 +02:00
.github/ISSUE_TEMPLATE Merge pull request #908 from chenguokai/master 2020-04-06 13:40:52 +02:00
cmake Whitespace cleanup 2020-04-15 16:20:17 +02:00
debian Merge branch 'pr-847/zx81a/master' into develop. 2020-02-21 01:07:52 +01:00
doc Whitespace cleanup 2020-04-15 16:20:17 +02:00
etc update udev rules for stlinkv2-1 2020-03-31 15:26:27 +02:00
flashloaders Fixing low-voltage flashing on STM32F7 parts. (#567) 2017-03-14 18:54:02 +01:00
include Merge pull request #917 from chenguokai/develop 2020-04-11 14:29:18 +02:00
scripts Deprecated old appveyor-mingw script 2020-04-08 00:12:36 +02:00
src Whitespace cleanup 2020-04-15 16:20:17 +02:00
stlinkv1_macosx_driver Resolved conflicts with develop branch. 2020-02-24 23:11:51 +01:00
tests Whitespace cleanup 2020-04-15 16:20:17 +02:00
usr/lib/pkgconfig Fixed indentation & whitespace. 2020-04-05 14:57:59 +02:00
.gitignore General Project Update 2020-04-10 23:38:17 +02:00
.travis.sh Resolved conflicts with develop branch. 2020-02-24 23:11:51 +01:00
.travis.yml General Project Update 2020-04-12 18:26:46 +02:00
.version compare git version with .version 2020-03-01 22:39:43 +02:00
CHANGELOG.md General Project Update 2020-04-14 21:01:52 +02:00
CMakeLists.txt Whitespace cleanup 2020-04-15 16:20:17 +02:00
CODE_OF_CONDUCT.md Create CODE_OF_CONDUCT.md 2020-02-20 00:24:18 +01:00
LICENSE.md General Project Update 2020-04-02 20:55:27 +02:00
Makefile Fixed compilation errors (Regression) 2020-04-08 15:34:10 +02:00
README.md General Project Update 2020-04-14 21:01:52 +02:00
cmake_uninstall.cmake.in Whitespace cleanup 2020-04-15 16:20:17 +02:00

README.md

Open source version of the STMicroelectronics STlink Tools

BSD licensed GitHub release GitHub commits Downloads Linux Status macOS Status

Recent new features and bugfixes can be found in the Changelog of this software project.

License

The stlink library and tools are licensed under the BSD-3 License.
The source files stm32l0x.s and stm32lx.s found in the subdirectory /flashloaders/ are licensed under the General Public License (GPL v2+).

Introduction

STLink is an open source toolset to program and debug STM32 devices and boards manufactured by STMicroelectronics. It supports several so called STLINK programmer boards (and clones thereof) which use a microcontroller chip to translate commands from USB to JTAG/SWD. There are four generations available on the market:

  • STLINK/v1 (obsolete as of 21-11-2019)
    • transport layer: SCSI passthru commands over USB
    • stand-alone programmer and present on STM32VL Discovery boards
  • STLINK/v2
    • transport layer: raw USB commands
    • stand-alone programmer and present on STM32L Discovery and Nucleo boards
  • STLINK/v2-1
    • transport layer: raw USB commands
    • present on some STM32 Nucleo boards
  • STLINK/v3
    • transport layer: raw USB commands
    • stand-alone programmer

On the user level there is no difference in handling or operation between these different revisions.

The STlink toolset includes:

  • a communication library (libstlink.a),
  • a programmer and chip information tool (st-info),
  • a flash manipulation tool (st-flash),
  • a GDB server (st-util) and
  • a GUI-Interface (stlink-gui) [optional]

Supported hardware combinations

Currently known working combinations of programmers and targets are listed in devices_boards.md.

Tutorial & HOWTO

Our [tutorial.md](doc/tutorial.md may help you along with some advanced tasks and additional info.

Installation

Windows:

Please compile and install from source as described in our compiling manual.

Long awaited binaries will be available soon...

macOS:

We recommend to install from:

Alternatively one can compile and install from source as described in our compiling manual.

Linux:

We recommend to install stlink-tools from the package repository of the used distribution:

Other Operating Systems:

Installation from source (advanced users)

When there is no executable available for your platform or you need the latest (possible unstable) version you need to compile the toolset yourself. This procedure is explained in the compiling manual.

Contributing and versioning

  • The semantic versioning scheme is used. Read more at semver.org
  • Before creating a pull request, please ALWAYS open a new issue for the discussion of the intended new features. Bugfixes don't require a discussion via a ticket-issue. However they should always be described in a few words as soon as they appear to help others as well.
  • Contributors and/or maintainers may submit comments or request changes to patch-proposals and/or pull-requests.
  • ATTENTION: NEVER EVER use the '#' character to count-up single points within a listing as '#' is exclusively reserved for referencing github issues and pull-requests. Otherwise you accidentally introduce false cross references within the project.
  • Please start new forks from the develop branch if possible as pull requests will go into this branch as well.

Current state of the project

Known missing features

Some features are currently missing from the texane/stlink toolset. Here we would appreciate any help and would love to welcome new contributors who want to get involved:

  • Instrumentation Trace Macro (ITM) Cell (#136)
  • OTP & EEPROM area programming (#202, #333, #686)
  • Protection bits area reading (#346)
  • Writing external memory connected to an STM32 controller (e.g Quad SPI NOR flash) (#412)
  • MCU hotplug (#449)
  • Writing options bytes (region) (#458)
  • Support for STLINKv3 programmer (#820)