Because I need to create a compilation and release tutorial for product managers who know nothing about technology, I'll just delete the product-related parts and write a blog post instead, yay!
Install Software Tools#
Download the packaged portable vscode from the following link
After downloading, place it in any folder and unzip it. The contents are as follows:
Run 1_首次打开请运行.bat
inside, there may be a permission prompt, just grant administrator permissions, it's safe.
Note that the unzipped folder should not be moved afterward, as the required toolchain paths have been added to the system path after elevation. If the entire folder is moved, you need to run 1_首次打开请运行.bat
again.
Open Project in vscode#
Click on Code.exe
to open vscode. The first time you open it, the plugins may not have loaded completely and the interface may still be in English. It is recommended to close and reopen it once; the second time it should be fine.
After opening, click on File
in the upper left corner and select Open Workspace from File
.
Find the project folder, there is a .vscode folder inside, which contains a .workspace file. Select it and open.
You may see a pop-up like this; just ignore it for now, as there will be a unified configuration later.
Configure Compilation#
The sidebar should have a CMAKE
tab as shown in the picture; click to open it. Click on the first item in the configuration, and a pop-up should appear as shown in the picture. Select the toolset as Unspecified
.
Click on the second item in the configuration, and a pop-up should appear as shown in the picture. Select MinSizeRel
.
Click the gear icon in the lower bar to compile and generate the product.
The product will be in the build folder in the project root folder, with two files: one with a hex
suffix and one with a bin
suffix, which are the actual required products.
Synthesize Release Files#
For all product projects, they should and must consist of two software projects, meaning each product needs to be compiled in two software projects to generate products.
The first part is the software project with keywords boot
, bootload
, or BL
; this part is the firmware and will not be modified after leaving the factory. The second part does not have these keywords and is the upgradable software.
Therefore, the goal is to synthesize a file with a hex
suffix as the factory programming file, which contains the two parts mentioned above. At the same time, release a bin
suffix file with only the upgradable software for on-site upgrades of machines that have already been shipped.
This article is synchronized and updated to xLog by Mix Space
The original link is https://www.yono233.cn/posts/shoot/24_12_10_vscodeCMAKE