[!IMPORTANT] This repository has been created using the
git submodule
command. Please refer to the "How to use" section for more details.
STM32Cube is an STMicroelectronics original initiative to ease developers' life by reducing efforts, time and cost.
STM32Cube covers the overall STM32 products portfolio. It includes a comprehensive embedded software platform delivered for each STM32 series.
The STM32CubeG4 MCU Package projects are directly running on the STM32G4 series boards. You can find in each Projects/Board name directories a set of software projects (Applications/Demonstration/Examples).
Details about the content of this release are available in the release note here.
This repository has been created using the git submodule
command. Please check the instructions below for proper use. Please check also the notes at the end of this section for further information.
--recursive
has to be specified as shown below.git clone --recursive https://github.com/STMicroelectronics/STM32CubeG4.git
git pull
git submodule update --init --recursive
vX.Y.Z
version. This should be done after the command(s) indicated in instruction (1) or in instruction (2) above have been successfully executed.git checkout vX.Y.Z # Specify the targeted vX.Y.Z version
vX.Y.Z
version.git clone --recursive --depth 1 --branch vX.Y.Z https://github.com/STMicroelectronics/STM32CubeG4.git
[!NOTE]
- The latest version of this firmware available on GitHub may be ahead of the one available on st.com or via STM32CubeMX. This is due to the rolling release process deployed on GitHub. Please refer to this post for more details.
- Option
--depth 1
specified in instruction (4) above is not mandatory. It may be useful to skip downloading all previous commits up to the one corresponding to the targeted version.- If GitHub "Download ZIP" option is used instead of the
git clone
command, then the different submodules have to be collected and added manually.
Please refer to the CONTRIBUTING.md guide.