-
Git Practical Guide: From Zero to Daily Use
If you can do the steps in this post, you can use Git in real work.No theory overload, just the commands you actually need. 1) One-time setup12git config --global user.name "Jasper"git co... -
CMake + STM32 Cross-Compile: A Practical Starter
When I moved STM32 projects to CMake, the biggest win was repeatable builds.No IDE magic, just files and commands. This is a practical starter for STM32 cross-compilation. 1) What you needInstall A... -
Build a C Environment on Windows with MSYS2 (UCRT64)
If you want a clean C/C++ toolchain on Windows, MSYS2 is still one of the best choices.This guide sets it up in UCRT64 and builds a minimal CMake project. 1) Install MSYS2Download and install ...
1