1

I am new at Ubuntu (20.04) and assembly programming. What I need to do is to set up the "stlink" stlink-1.6.1-1.x86_64.rpm file and/or Source code.zip file in this github link for release version v1.6.1 ( zip files are at the bottom of the explanations): https://github.com/stlink-org/stlink/releases/tag/v1.6.1.

(Stlink is a helper program to communicate between the computer and the arm STM32F Discovery board.)

I have double click the zip files and it does not started any kind of set up, it just go into the main folder in the zip file. Can anyone help me settin up this program?

esra
  • 113

2 Answers2

2

After downloading and extracting the zip file, please consult the README. It says, in part:

Linux

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

I suggest that you open a terminal and do:

sudo apt update
sudo apt install stlink-tools

You should be all set.

chili555
  • 61,330
0

A very fast and easy to install on linux is EBlink. EBlink is using a more sophisticated algorithm and is the fastest gdb server (for stlink).

Stlink-org is no longer maintained so for newer devices you have to look for alternatives anyway.

https://github.com/EmBitz/EBlink

Grad
  • 1