Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- HTTP
- sqlite
- flutter
- CrossAxisAlignment
- navigator
- WillPopScope
- Column Widget
- Row Widget
- InkWell
- 반석천
- Flutter Tutorial
- Flutter 강좌
- Flutter 예제
- ListView.builder
- Row
- node.js
- MainAxisAlignment
- Image.network
- Cached Image
- Snackbar
- Load Image
- AppBar
- FutureBuilder
- ListTile
- Hello World
- Flutter 앱 배포
- Scaffold
- Flutter Example
- Networking
- listview
Archives
- Today
- Total
꿈꾸는 시스템 디자이너
ADK 펌웨어(demokit.pde) 컴파일 중 "WProgram.h"를 찾을 수 없는 에러 본문
구글의 ADK 개발자 웹사이트를 따라 펌웨어를 ADK 보드로 인스톨 할때 "WProgram.h"를 찾을 수 없다는 에러를 만나게 된다.
이는 Arduino Software(IDE) 1.0부터 WProgram.h가 Arduino.h 파일로 변경되었기 때문이다.
에러가 발생하는 헤더 파일들을 열어서 헤더 파일명을 변경하면 에러를 잡을 수 있다.
이는 Arduino Software(IDE) 1.0부터 WProgram.h가 Arduino.h 파일로 변경되었기 때문이다.
에러가 발생하는 헤더 파일들을 열어서 헤더 파일명을 변경하면 에러를 잡을 수 있다.
이 밖에도 아래와 같은 에러들이 발생한다.
이는 Arduino 1.0의 라이브러리가 기존 버전과 상당수 달라져서 인 것 같다.
또한 현재 구글에서 배포하는 ADK package와의 호환이 깨진 상태이다.
기존 버전인 Arduino 0023을 다운로드하여 수행하니 문제없이 컴파일이 가능했다.
demokit.cpp: In function 'char read_joy_reg(char)':
demokit.pde:-1: error: 'class TwoWire' has no member named 'send'
As of Arduino 1.0, the Wire.send() function was renamed to Wire.write() for consistency with other libraries.
demokit.pde:-1: error: 'class TwoWire' has no member named 'receive'
As of Arduino 1.0, the Wire.receive() function was renamed to Wire.read() for consistency with other libraries.
demokit.cpp: In function 'void write_joy_reg(char, char)':
demokit.pde:-1: error: 'class TwoWire' has no member named 'send'
As of Arduino 1.0, the Wire.send() function was renamed to Wire.write() for consistency with other libraries.
demokit.pde:-1: error: 'class TwoWire' has no member named 'send'
|
이는 Arduino 1.0의 라이브러리가 기존 버전과 상당수 달라져서 인 것 같다.
또한 현재 구글에서 배포하는 ADK package와의 호환이 깨진 상태이다.
기존 버전인 Arduino 0023을 다운로드하여 수행하니 문제없이 컴파일이 가능했다.
'Development > Android' 카테고리의 다른 글
[번역] USB Accessory for Android(안드로이용 USB 악세사리) (0) | 2012.01.02 |
---|---|
Arduino ADK와 연결 성공 (3) | 2012.01.02 |
아두이노(Arduino) Mega ADK (0) | 2011.12.20 |
안드로이드 개발에서 com.google.common 패키지를 추가하는 방법 (0) | 2011.11.23 |
Android에서 네트워크 상태를 조사하기 위한 매니페스트 설정 (0) | 2011.11.15 |
Comments