Skip to content

Commit 9feb353

Browse files
committed
add eclipse howto
1 parent 576944c commit 9feb353

File tree

3 files changed

+34
-0
lines changed

3 files changed

+34
-0
lines changed
12.4 KB
Loading

docs/eclipse/2_Install_software.png

62.4 KB
Loading

docs/eclipse/eclipse.md

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
using Eclipse with Arduino ESP8266
2+
===========================================
3+
4+
### What to Download ###
5+
- [arduino IDE](https://www.arduino.cc/en/Main/Software)
6+
- [Eclipse IDE for C/C++ Developers](http://www.eclipse.org/downloads/packages/eclipse-ide-cc-developers/marsr)
7+
- [Java](http://www.java.com/)
8+
9+
### Setup Arduino ###
10+
see the [Readme](https://github.com/esp8266/Arduino#installing-with-boards-manager)
11+
12+
### Setup Eclipse ###
13+
- [step 1](http://www.baeyens.it/eclipse/how_to.shtml#/c)
14+
- [step 2](http://www.baeyens.it/eclipse/how_to.shtml#/e)
15+
- go to Window --> preferences --> Arduino
16+
- add as private hardware path the Part to the ESP8266 (example: C:\Users\username\AppData\Roaming\Arduino15\packages\esp8266\hardware\esp8266)
17+
18+
### Eclipse wont build ###
19+
if eclipse dont find the path to the Compiler add to the platform.txt
20+
after:
21+
```
22+
version=1.6.4
23+
```
24+
this:
25+
```
26+
runtime.tools.xtensa-lx106-elf-gcc.path={runtime.platform.path}/../../../tools/xtensa-lx106-elf-gcc/1.20.0-26-gb404fb9
27+
runtime.tools.esptool.path={runtime.platform.path}/../../../tools/esptool/0.4.4
28+
```
29+
Note:
30+
- the path may changed, check the current version.
31+
- each update over the Arduino IDE will remove the fix
32+
- may not needed in future if Eclipse Plugin get an Update
33+
34+

0 commit comments

Comments
 (0)