我在vscode配置arduino中其他遇到一个问题,就是 arduino 程序有错误问题。但 编辑器问题无输出 如图所示
在忽略错误进行编译后,程序输出只能提示一个大概范围,不能做到像原生IDE中那样,直接定位到发生错误的程序,如图所示
我在json中的配置如图所示
程序如下
"arduino.path": "C:\\Program Files (x86)\\Arduino",
"editor.insertSpaces": true,
"files.autoGuessEncoding": true,
"arduino.logLevel": "info",
"explorer.confirmDelete": false,
"editor.detectIndentation": false,
"arduino.additionalUrls": "",
"workbench.colorTheme": "Default Dark+",
"editor.accessibilitySupport": "on",
"C_Cpp.updateChannel": "Insiders",
"C_Cpp.intelliSenseEngineFallback":"Disabled",
"C_Cpp.intelliSenseEngine": "Tag Parser",
"editor.fontSize": 25,
"output": "./build",
"C_Cpp.errorSquiggles": "Enabled",
"arduino.disableIntelliSenseAutoGen": true,
"editor.tabSize": 2,
以上,就是我的问题所在,我需要在删除还是增加或修改哪里请指点。