Where to Start#
First, there is such a tutorial, which is very "from beginner to beginner."👌
If you want to fully understand the mechanisms and syntax of CMAKE, you can follow this tutorial all the way through. However, the tutorial has the following issues:
[!NOTE]
- It is only for learning and understanding, not suitable for production environments. The tutorial is based on a learning environment, using C++, and the default C compiler (in my environment, it is clang), and the compiled output is only an exe that can run on the desktop. We certainly need to use arm_gcc for compilation, or at least know how to specify other gcc tools to use the project in production.
- The project structure is overly complex, which is not conducive to beginners' understanding. Since it cannot be used for production, the entire software is too complex, with too many cmakelist files, which is unfriendly to beginners.
So you can just look at Steps 1 to 3 of the tutorial.
The software tools involved need to be downloaded by yourself and the executable file paths added to the environment variables:
- Cmake
- MinGW64
- arm-none-eabi-gcc
Or use my packaged portable vscode environment from my file station.
Then use stm32cubemx to randomly generate a debuglink project, selecting CMAKE as the toolchain for project generation. Then analyze the project it generates.
Download Software Tools#
It is recommended to install Cmake and MinGW64 using the MSYS2 MINGW64 branch environment, as manual installation may lead to dependency issues that make it difficult to proceed, or scattered dependencies that are not conducive to modularization.
After installing MSYS2, open mingw64.exe and run the following two commands:
pacman -S mingw-w64-x86_64-make
pacman -S mingw-w64-x86_64-cmake
After installation, add the path of the MSYS2 mingw64/bin folder to the system environment variable path.
arm-none-eabi-gcc needs to be downloaded from the official website, as the version downloaded in MSYS2 is incomplete and will miss the GDB tool.
Download from Arm GNU Toolchain Downloads – Arm Developer or my file mirror arm-gcc.
After extracting or installing, make sure to add the path of the bin folder to the system environment variable path.
A Simple Project#
In stm32cubemx,