성태의 닷넷 이야기
홈 주인
모아 놓은 자료
프로그래밍
질문/답변
사용자 관리
사용자
메뉴
아티클
외부 아티클
유용한 코드
온라인 기능
MathJax 입력기
최근 덧글
[정성태] VT sequences to "CONOUT$" vs. STD_O...
[정성태] NetCoreDbg is a managed code debugg...
[정성태] Evaluating tail call elimination in...
[정성태] What’s new in System.Text.Json in ....
[정성태] What's new in .NET 9: Cryptography ...
[정성태] 아... 제시해 주신 "https://akrzemi1.wordp...
[정성태] 다시 질문을 정리할 필요가 있을 것 같습니다. 제가 본문에...
[이승준] 완전히 잘못 짚었습니다. 댓글 지우고 싶네요. 검색을 해보...
[정성태] 우선 답글 감사합니다. ^^ 그런데, 사실 저 예제는 (g...
[이승준] 수정이 안되어서... byteArray는 BYTE* 타입입니다...
글쓰기
제목
이름
암호
전자우편
HTML
홈페이지
유형
제니퍼 .NET
닷넷
COM 개체 관련
스크립트
VC++
VS.NET IDE
Windows
Team Foundation Server
디버깅 기술
오류 유형
개발 환경 구성
웹
기타
Linux
Java
DDK
Math
Phone
Graphics
사물인터넷
부모글 보이기/감추기
내용
<div style='display: inline'> <h1 style='font-family: Malgun Gothic, Consolas; font-size: 20pt; color: #006699; text-align: center; font-weight: bold'>Visual Studio Code extension for Arduino - #include errors detected.</h1> <p> 이상하군요. 다음과 같은 오류가 발생하는데,<br /> <br /> <img alt='vs_code_include_error_1.png' src='/SysWebRes/bbs/vs_code_include_error_1.png' /><br /> <br /> <pre style='margin: 10px 0px 10px 10px; padding: 10px 0px 10px 10px; background-color: #fbedbb; overflow: auto; font-family: Consolas, Verdana;' > Configure your IntelliSense settings to help find missing headers. Source C/C++ (Extension) </pre> <br /> 붉은 밑줄이 있는 "void setup()" 위에 마우스를 올려놓으니 이런 오류 메시지가 나타납니다.<br /> <br /> <div style='BACKGROUND-COLOR: #ccffcc; padding: 10px 10px 5px 10px; MARGIN: 0px 10px 10px 10px; FONT-FAMILY: Malgun Gothic, Consolas, Verdana; COLOR: #005555'> #include errors detected. Please update your includePath. IntelliSense features for this translation unit (%USERPROFILE%\Documents\Arduino\generated_examples\Blink\Blink.ino) will be provided by the Tag Parser.<br /> <br /> cannot open source file "avr/pgmspace.h" (dependency of "C:\Program Files (x86)\Arduino\hardware\arduino\avr\cores\arduino\Arduino.h")<br /> </div><br /> <br /> 더욱 이상한 것은, 위의 프로젝트는 c:\temp\My 폴더에 있는 My.ino인데, 엉뚱하게 %USERPROFILE%\Documents\Arduino\generated_examples\Blink\Blink.ino 파일의 경로가 나오는 것입니다. 혹시나 해서, %USERPROFILE%\Documents\Arduino\generated_examples\Blink 폴더를 삭제했더니 이제는 다음과 같이 오류 메시지가 바뀝니다.<br /> <br /> <div style='BACKGROUND-COLOR: #ccffcc; padding: 10px 10px 5px 10px; MARGIN: 0px 10px 10px 10px; FONT-FAMILY: Malgun Gothic, Consolas, Verdana; COLOR: #005555'> #include errors detected. Please update your includePath. IntelliSense features for this translation unit (C:\temp\My\My.ino) will be provided by the Tag Parser.<br /> <br /> cannot open source file "avr/pgmspace.h" (dependency of "C:\Program Files (x86)\Arduino\hardware\arduino\avr\cores\arduino\Arduino.h")<br /> </div><br /> <br /> 우선, 두 번째 오류는 ./.vscode/settings.json 파일을 통해 "Workspace Settings" 수준으로 C_Cpp.intelliSenseEngineFallback 설정을 하면 없어집니다. (settings.json 파일이 없는 경우 그냥 만들거나 Command Palette을 통해 "> Preferences: Open Settings (JSON)" 명령을 실행합니다.)<br /> <br /> <pre style='margin: 10px 0px 10px 10px; padding: 10px 0px 10px 10px; background-color: #fbedbb; overflow: auto; font-family: Consolas, Verdana;' > { "C_Cpp.intelliSenseEngineFallback": "Disabled" } </pre> <br /> 첫 번째 오류는 해결 방법이 상황에 따라 달라질 수 있을 것 같은데, 일단 제 경우에는 다음과 같이 2개의 include 폴더를 추가했을 때 없어졌습니다.<br /> <br /> <pre style='margin: 10px 0px 10px 10px; padding: 10px 0px 10px 10px; background-color: #fbedbb; overflow: auto; font-family: Consolas, Verdana;' > { "configurations": [ { "name": "Win32", "includePath": [ "C:\\Program Files (x86)\\Arduino\\tools\\**", "C:\\Program Files (x86)\\Arduino\\hardware\\arduino\\avr\\**", <span style='color: blue; font-weight: bold'>"C:/Program Files (x86)/Arduino/hardware/tools/avr/avr/include", "C:/Program Files (x86)/Arduino/hardware/arduino/avr/variants/circuitplay32u4"</span> ], "forcedInclude": [ "C:\\Program Files (x86)\\Arduino\\hardware\\arduino\\avr\\cores\\arduino\\Arduino.h" ], "intelliSenseMode": "msvc-x64", "compilerPath": "C:/Program Files (x86)/Microsoft Visual Studio/2017/Enterprise/VC/Tools/MSVC/14.15.26726/bin/Hostx64/x64/cl.exe", "cStandard": "c11", "cppStandard": "c++17" } ], "version": 4 } </pre> <br /> 재미있는 것은, 첫 번째 문제를 해결하면 두 번째의 settings.json 설정을 하지 않아도 됩니다. 음... 보면 볼수록 이상하군요. ^^ /avr/avr/include 폴더는 그렇다 쳐도 /avr/variants 폴더는 그 상위에 있는 avr\\** 설정에 포함이 되는데도 다시 해줘야만 합니다.<br /> <br /> <hr style='width: 50%' /><br /> <br /> 참고로, 이번 2개의 오류는 사실 발생했다고 해도 그다지 개발에 영향을 주는 것은 아니고 IntelliSense에만 약간 문제가 발생합니다. 중요 작업인 컴파일 및 업로드가 잘 되므로 고치지 않아도 상관없지만 그래도 빨간 줄이 그어지는 것을 참고 못 보는 분들이라면 ^^ 이런 유의 작업을 해줘야만 합니다.<br /> <br /> <hr style='width: 50%' /><br /> <br /> <pre style='margin: 10px 0px 10px 10px; padding: 10px 0px 10px 10px; background-color: #fbedbb; overflow: auto; font-family: Consolas, Verdana;' > Visual Studio Code를 이용한 아두이노 프로그램 개발 ; <a target='tab' href='http://www.sysnet.pe.kr/2/0/11753'>http://www.sysnet.pe.kr/2/0/11753</a> Visual Studio Code를 이용한 아두이노 프로그램 개발 - 새 프로젝트 ; <a target='tab' href='http://www.sysnet.pe.kr/2/0/11754'>http://www.sysnet.pe.kr/2/0/11754</a> Visual Studio Code의 아두이노 프로그램 개발 시 인텔리센스가 안 된다면? ; <a target='tab' href='http://www.sysnet.pe.kr/2/0/11756'>http://www.sysnet.pe.kr/2/0/11756</a> Visual Studio Code extension for Arduino - #include errors detected. ; http://www.sysnet.pe.kr/2/0/11755 </pre> </p><br /> <br /><hr /><span style='color: Maroon'>[이 글에 대해서 여러분들과 의견을 공유하고 싶습니다. 틀리거나 미흡한 부분 또는 의문 사항이 있으시면 언제든 댓글 남겨주십시오.]</span> </div>
첨부파일
스팸 방지용 인증 번호
5735
(왼쪽의 숫자를 입력해야 합니다.)