You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: readme.md
+31-38Lines changed: 31 additions & 38 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,6 +2,7 @@
2
2
3
3
The Arduino Eclipse IDE
4
4
5
+
It works on MS Windows, Mac OSX and Linux.
5
6
##Installation
6
7
###prerequisites
7
8
@@ -27,37 +28,37 @@ For other platforms just inspect the cmd file for the path, navigate to the exec
27
28
28
29
##Developing (Improving) the Plugin
29
30
30
-
Fork the repository on GitHub.
31
-
Your link should look like this: https://github.com/YOUR_FORK/arduino-eclipse-plugin.git
31
+
Fork the repository on GitHub (https://help.github.com/articles/fork-a-repo) for your changes.
32
32
33
+
Note that your git link should look like this: https://github.com/YOUR_FORK/arduino-eclipse-plugin.git -- we will use it later.
33
34
34
-
###Add Eclipse Plugin Development Environment into your Eclipse Environment
35
+
###Add needed plugins/features into the Eclipse Environment
35
36
37
+
You should already have a supported Eclipse version installed (the CDT package makes a good start point). Let's add:
38
+
39
+
####Add Eclipse Plugin Development Environment
36
40
37
41
Help-> Install New Software -> Work with: -> All Available Sites
38
42
39
-
Now select the *Eclipse Plug-in Development Environment*
43
+
Now search/select the *Eclipse Plug-in Development Environment*
40
44
45
+
Note: This may take a while to download all the available packages.
41
46
42
47

43
48
44
-
###Recommended plugins
45
-
46
-
For completeness you should install (if not already installed)
47
49
48
-
####The Java Development Tools
50
+
####Add Eclipse Java Development Tools
49
51
50
52
If you're not using Eclipse with the JDT you'll need to install them. To do this you first need to open the Dialog for installing new Software:
51
53
52
-
53
54
*Help*-> *Install New Software*
54
55
55
56
There you select for *Work with:**YOUR_ECLIPSE_RELEASE - http://download.eclipse.org/releases/YOUR_ECLIPSE_RELEASE*
56
57
57
58
There you open:
58
59
*Programming Languages -> Eclipse Java Development Tools.*
59
60
60
-
####EGit - Eclipse Git Team Provider
61
+
####Add EGit - Eclipse Git Team Provider
61
62
62
63
To install EGit you'll need to do the following:
63
64
@@ -67,23 +68,23 @@ There have to enter the following URL and press ENTER.
67
68
68
69
*http://download.eclipse.org/egit/updates*
69
70
70
-
Now you have to open up the **Eclipse Git Team Provider** Categorry and select **Eclipse Git Team Provider** , now you just have to press next and do what the dialog tells you to do.
71
-
71
+
Now you have to open up the **Eclipse Git Team Provider** Category and select **Eclipse Git Team Provider** , now you just have to press next and do what the dialog tells you to do.
72
72
73
+
<!-- Eclipse GitHub integration with task focused interface -->
73
74
74
75
75
76
76
-
###Importing the Project
77
+
###Importing the Arduino Plugin Project into Eclipse
77
78
78
79
After you installed all the plugins you'll need to restart Eclipse to use them.
79
80
80
81
81
-
You will need to import the projects into Eclipse, there are two ways to do that:
82
+
Then comes time to get the plugin source code in a place you can use. You will need to import the projects into Eclipse, there are two ways to do that:
82
83
83
-
####Via command line
84
+
####1)Via command line
84
85
85
86
86
-
If youre using Windows you should first install [GitHub for Windows](http://windows.github.com/).
87
+
If you're using Windows you should first install [GitHub for Windows](http://windows.github.com/).
87
88
88
89
First you should open a command line, and change the directory to the directory where you want to store your Project.
89
90
@@ -113,56 +114,48 @@ You will select the following:
113
114
Now press Finish, and it should import the selected Projects.
To avoid having changes all the time because of different formatting this project contains a formatting xml.
156
151
Go to window->preferences->java->Code style->Formatter import codeformat.xml in the root of the repo.
157
152
158
153
###Running the plugin
159
154
160
-
161
155
Then running is very simple - just right click it.bayaens.arduino.core and select *run as -> Eclipse Application* (or *debug as -> Eclipse Application* -- letting you set breakpoints)
162
156
163
157
Eclipse will launch a new workbench disabling the installed version if any of the plugin and updating with the plugins in the current workspace.
0 commit comments