Registered User |
Registered User mNo edit summary |
||
(9 intermediate revisions by 3 users not shown) | |||
Line 1: | Line 1: | ||
==Open a terminal== | ==Open a terminal== | ||
Open a terminal on the host computer. | Open a terminal on the host computer. | ||
Line 32: | Line 33: | ||
* Create a temporary directory in your STM32MPU workspace: | * Create a temporary directory in your STM32MPU workspace: | ||
{{PC$}} mkdir $HOME/STM32MPU_workspace/tmp | {{PC$}} mkdir $HOME/STM32MPU_workspace/tmp | ||
* Download | * Download [https://www.st.com/en/development-tools/stm32cubeprog.html#getsoftware-scroll STM32CubeProgrammer] in the following directory<br> '''$HOME/STM32MPU_workspace/tmp''' | ||
STM32CubeProgrammer V2.9 recommended for {{EcosystemRelease | revision=3.1.0| range= }} | |||
STM32CubeProgrammer V2.8 recommended for {{EcosystemRelease | revision=3.0.0| range= }} | |||
* Uncompress the archive file to get the STM32CubeProgrammer installers: | * Uncompress the archive file to get the STM32CubeProgrammer installers: | ||
Line 42: | Line 45: | ||
{{PC$}} ./SetupSTM32CubeProgrammer-x.y.z.linux | {{PC$}} ./SetupSTM32CubeProgrammer-x.y.z.linux | ||
The screenshots below have been obtained with {{Highlight|STM32CubeProgrammer V2.7.0}}. They are provided {{Highlight| as examples}}: | The screenshots below have been obtained with old {{Highlight|STM32CubeProgrammer V2.7.0}}. They are provided {{Highlight| as examples}} still valid for higher version : | ||
[[File: STM32CubeProgrammer_installation_splashscreen.png|frame|center|link=|Splash screen]] | [[File: STM32CubeProgrammer_installation_splashscreen.png|frame|center|link=|Splash screen]] | ||
[[File: STM32CubeProgrammer_installation_welcome_27.png|frame|center|link=|Welcome page]] | [[File: STM32CubeProgrammer_installation_welcome_27.png|frame|center|link=|Welcome page]] | ||
Line 48: | Line 51: | ||
* Add the STM32CubeProgrammer binary path to your PATH environment variable: | * Add the STM32CubeProgrammer binary path to your PATH environment variable: | ||
export PATH=$HOME/STM32MPU_workspace/STM32MPU-Tools/STM32CubeProgrammer-x.y.z/bin:$PATH | export PATH=$HOME/STM32MPU_workspace/STM32MPU-Tools/STM32CubeProgrammer-x.y.z/bin:$PATH | ||
* Go inside the binary folder: | |||
{{PC$}} cd $HOME/STM32MPU_workspace/STM32MPU-Tools/STM32CubeProgrammer-x.y.z/bin/ | |||
{{ReviewsComments|-- [[User:Kevin Huber|Kevin Huber]] ([[User talk:Kevin Huber|talk]]) 14:59, 13 December 2021 (CET)<br />I added this part because we are currently facing a bug if the CubeProgrammer is not launched from its binary folder. Ticket: 115167 }} | |||
* Check that the STM32CubeProgrammer tool is properly installed and accessible: | * Check that the STM32CubeProgrammer tool is properly installed and accessible: | ||
{{PC$}} STM32_Programmer_CLI --h | {{PC$}} STM32_Programmer_CLI --h | ||
Line 66: | Line 74: | ||
{{Warning|Only microSD cards SanDisk Class 10 and UHS Speed Class 1 are verified. Others are not recommended.}} | {{Warning|Only microSD cards SanDisk Class 10 and UHS Speed Class 1 are verified. Others are not recommended.}} | ||
===For {{EcosystemRelease | revision=3.1.0}}=== | |||
{{PC$}} mkdir $HOME/STM32MPU_workspace/STM32MP15-Ecosystem-v3.1.0 | |||
{{PC$}} mkdir $HOME/STM32MPU_workspace/STM32MP15-Ecosystem-v3.1.0/Starter-Package | |||
{{PC$}} cd $HOME/STM32MPU_workspace/STM32MP15-Ecosystem-v3.1.0/Starter-Package | |||
* Download the [{{EcosystemRelease/Package | revision=3.1.0| package=Images package | request=url}}/{{EcosystemRelease/Package | revision=3.1.0| package=Images package | request=name}} STM32MP15-Ecosystem-v3.1.0 Starter Package] to the following directory:<br> '''$HOME/STM32MPU_workspace/STM32MP15-Ecosystem-v3.1.0/Starter-Package''' | |||
* Uncompress the tarball file to get the binaries for the different partitions of the image, and the Flash layout files | |||
{{PC$}} tar xvf {{EcosystemRelease/Package | revision=3.1.0| package=Images package | request=name}} | |||
<div class="mw-collapsible mw-collapsed"> | |||
===For {{EcosystemRelease | revision=3.0.0}}=== | |||
<div class="mw-collapsible-content"> | |||
* Create your STM32MP15 Starter Package directory on the host computer: | * Create your STM32MP15 Starter Package directory on the host computer: | ||
Line 74: | Line 94: | ||
* Uncompress the tarball file to get the binaries for the different partitions of the image, and the Flash layout files | * Uncompress the tarball file to get the binaries for the different partitions of the image, and the Flash layout files | ||
{{PC$}} tar xvf {{EcosystemRelease/Package | revision=3.0.0| package=Images package | request=name}} | {{PC$}} tar xvf {{EcosystemRelease/Package | revision=3.0.0| package=Images package | request=name}} | ||
</div> | |||
<noinclude> | <noinclude> |
Latest revision as of 14:26, 28 January 2022
1. Open a terminal
Open a terminal on the host computer.

All the commands preceded by PC $> have to be executed from the host computer terminal.
- Create your STM32MPU workspace directory on the host computer:
PC $> mkdir $HOME/STM32MPU_workspace
PC $> cd $HOME/STM32MPU_workspace
2. Check the host computer Internet access
- An Internet access through http and https protocols must be provided.
The command below enables checking for Internet access through http/https protocols:
PC $> wget -q www.google.com && echo "Internet access over HTTP/HTTPS is OK !" || echo "No internet access over HTTP/HTTPS ! You may need to set up a proxy."
If an 'OK' message is returned, the network is correctly configured.
In this case, skip the rest of this section.
Otherwise, a proxy for http/https protocols is required.
The best solution is to set this proxy through the shell variables http_proxy and https_proxy:
PC $> export http_proxy=http://<MyProxyLogin>:<MyProxyPassword>@<MyProxyServerUrl>:<MyProxyPort>
PC $> export https_proxy=http://<MyProxyLogin>:<MyProxyPassword>@<MyProxyServerUrl>:<MyProxyPort>
Check again the Internet access using the command:
PC $> wget -q www.google.com && echo "Internet access over HTTP/HTTPS is OK !" || echo "No internet access over HTTP/HTTPS ! You may need to set up a proxy."
3. Install the tools
3.1. STM32CubeProgrammer
- Create your STM32MPU tools directory on the host computer:
PC $> mkdir $HOME/STM32MPU_workspace/STM32MPU-Tools
PC $> mkdir $HOME/STM32MPU_workspace/STM32MPU-Tools/STM32CubeProgrammer-x.y.z
- Create a temporary directory in your STM32MPU workspace:
PC $> mkdir $HOME/STM32MPU_workspace/tmp
- Download STM32CubeProgrammer in the following directory
$HOME/STM32MPU_workspace/tmp
STM32CubeProgrammer V2.9 recommended for ecosystem release unknown revision 3.1.0
STM32CubeProgrammer V2.8 recommended for ecosystem release v3.0.0
- Uncompress the archive file to get the STM32CubeProgrammer installers:
PC $> cd $HOME/STM32MPU_workspace/tmp
PC $> unzip SetupSTM32CubeProgrammer.zip
- Execute the Linux® installer, which guides you through the installation process. Select "$HOME/STM32MPU-Tools/STM32CubeProgrammer-x.y.z" as installation directory when it is requested by the installer.
PC $> ./SetupSTM32CubeProgrammer-x.y.z.linux
The screenshots below have been obtained with old STM32CubeProgrammer V2.7.0. They are provided as examples still valid for higher version :



- Add the STM32CubeProgrammer binary path to your PATH environment variable:
export PATH=$HOME/STM32MPU_workspace/STM32MPU-Tools/STM32CubeProgrammer-x.y.z/bin:$PATH
- Go inside the binary folder:
PC $> cd $HOME/STM32MPU_workspace/STM32MPU-Tools/STM32CubeProgrammer-x.y.z/bin/
- Check that the STM32CubeProgrammer tool is properly installed and accessible:
PC $> STM32_Programmer_CLI --h
-------------------------------------------------------------------
STM32CubeProgrammer vx.y.z
-------------------------------------------------------------------
3.2. USB serial link
- Install the libusb on your host computer:
PC $> sudo apt-get install libusb-1.0-0
- To allow STM32CubeProgrammer to access the USB port through low-level commands, proceed as follows:
PC $> cd $HOME/STM32MPU_workspace/STM32MPU-Tools/STM32CubeProgrammer-x.y.z/Drivers/rules
PC $> sudo cp *.* /etc/udev/rules.d/
4. Download the image
The software package is provided AS IS, and by downloading it, you agree to be bound to the terms of the software license agreement (SLA). The detailed content licenses can be found here.
![]() |
To download a package, it is recommended to be logged in to your "myst" account [1]. If, trying to download, you encounter a “403 error”, you could try to empty your browser cache to workaround the problem. We are working on the resolution of this problem. We apologize for this inconvenience |
![]() |
Only microSD cards SanDisk Class 10 and UHS Speed Class 1 are verified. Others are not recommended. |
4.1. For ecosystem release unknown revision 3.1.0 
PC $> mkdir $HOME/STM32MPU_workspace/STM32MP15-Ecosystem-v3.1.0
PC $> mkdir $HOME/STM32MPU_workspace/STM32MP15-Ecosystem-v3.1.0/Starter-Package
PC $> cd $HOME/STM32MPU_workspace/STM32MP15-Ecosystem-v3.1.0/Starter-Package
- Download the [unknown revision/unknown revision STM32MP15-Ecosystem-v3.1.0 Starter Package] to the following directory:
$HOME/STM32MPU_workspace/STM32MP15-Ecosystem-v3.1.0/Starter-Package - Uncompress the tarball file to get the binaries for the different partitions of the image, and the Flash layout files
unknown revisionPC $> tar xvf