配置IntelliSense
擴展程序會根據當前系統環境配置基本信息,因此有可能配置不完整,這時需要通過生成c_cpp_properties.json文件來配置缺少的信息:
ctrl+shift+P打開Command Palette,運行C/Cpp: Edit configurations...生成c_cpp_properties.json:
"includePath": [
"${workspaceFolder}/**",
"D:\\ite_sdk\\sdk\\**",
"D:\\ite_sdk\\openrtos\\**",
"C:\\ITEGCC\\*"
構建應用程序
如果要構建應用程序,則需要生成tasks.json文件:
Ctrl+Shift+P -> Tasks: Configure Tasks… -> Create tasks.json file from templates -> Others.
https://www.cnblogs.com/Elvis827/p/9045071.html
