Skip to content

Commit fa0e499

Browse files
committed
MD Merge
2 parents 077957b + 771339b commit fa0e499

File tree

2 files changed

+32
-39
lines changed

2 files changed

+32
-39
lines changed

it.baeyens.arduino.core/OSGI-INF/l10n/bundle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ command.label.0 = Upload the build sketch
2626
command.label.1 = Create a new sketch
2727
command.label.2 = Open the serial monitor
2828
menu.label = A&rduino
29-
command.label.3 = verify
29+
command.label.3 = Verify
3030
command.tooltip = In contrast to the Arduino IDE this button will not build before upload.
3131
extension.name.0 = Arduino Build Definitions
3232
builder.name = Arduino GNU Make Builder

readme.md

Lines changed: 31 additions & 38 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
The Arduino Eclipse IDE
44

5+
It works on MS Windows, Mac OSX and Linux.
56
##Installation
67
###prerequisites
78

@@ -27,37 +28,37 @@ For other platforms just inspect the cmd file for the path, navigate to the exec
2728

2829
##Developing (Improving) the Plugin
2930

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.
3232

33+
Note that your git link should look like this: https://github.com/YOUR_FORK/arduino-eclipse-plugin.git -- we will use it later.
3334

34-
###Add Eclipse Plugin Development Environment into your Eclipse Environment
35+
###Add needed plugins/features into the Eclipse Environment
3536

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
3640

3741
Help-> Install New Software -> Work with: -> All Available Sites
3842

39-
Now select the *Eclipse Plug-in Development Environment*
43+
Now search/select the *Eclipse Plug-in Development Environment*
4044

45+
Note: This may take a while to download all the available packages.
4146

4247
![alt text](images_plugin_dev_setup/adding_pde.png "Adding the Plugin Development Environment")
4348

44-
###Recommended plugins
45-
46-
For completeness you should install (if not already installed)
4749

48-
####The Java Development Tools
50+
####Add Eclipse Java Development Tools
4951

5052
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:
5153

52-
5354
*Help*-> *Install New Software*
5455

5556
There you select for *Work with:* *YOUR_ECLIPSE_RELEASE - http://download.eclipse.org/releases/YOUR_ECLIPSE_RELEASE*
5657

5758
There you open:
5859
*Programming Languages -> Eclipse Java Development Tools.*
5960

60-
####EGit - Eclipse Git Team Provider
61+
####Add EGit - Eclipse Git Team Provider
6162

6263
To install EGit you'll need to do the following:
6364

@@ -67,23 +68,23 @@ There have to enter the following URL and press ENTER.
6768

6869
*http://download.eclipse.org/egit/updates*
6970

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.
7272

73+
<!-- Eclipse GitHub integration with task focused interface -->
7374

7475

7576

76-
###Importing the Project
77+
###Importing the Arduino Plugin Project into Eclipse
7778

7879
After you installed all the plugins you'll need to restart Eclipse to use them.
7980

8081

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:
8283

83-
####Via command line
84+
####1)Via command line
8485

8586

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/).
8788

8889
First you should open a command line, and change the directory to the directory where you want to store your Project.
8990

@@ -113,56 +114,48 @@ You will select the following:
113114
Now press Finish, and it should import the selected Projects.
114115

115116

116-
<!--
117-
via EGit interface.
117+
####2)Via EGit interface.
118118

119119
*File -> Import -> Git -> Projects from Git -> Clone URI*
120120

121121
Now type your fork in to URI, for example:
122122

123123
*https://github.com/YOUR_FORK/arduino-eclipse-plugin.git*
124124

125+
Next
125126

127+
Branch Selection: master
126128

129+
Local destination: /home/your_name/git/arduino-eclipse-plugin
130+
or c:\git\arduino-eclipse-plugin
127131

132+
Rest of page unchanged.
128133

129-
import, select, plugins, Import Plug-ins and Fragments
130-
131-
![alt text](images_plugin_dev_setup/import_select.png "Adding the Plugin Development Environment")
132-
133-
134-
Import Plug-ins and Fragments
134+
Next.
135135

136-
URI
136+
Select a wizard: Import Existing Projects
137137

138-
https://github.com/YOUR_FORK/arduino-eclipse-plugin.git
138+
Next.
139139

140-
master
140+
Import Projects
141141

142-
import all existing projects
142+
Select all the projects
143143

144144
FINISH
145-
-->
146-
147-
148-
149-
150145

151146
After all it should look like this:
152-
![alt text](images_plugin_dev_setup/Imported_projects.png "Adding the Plugin Development Environment")
147+
![alt text](images_plugin_dev_setup/Imported_projects.png "Projects imported")
153148

154-
###Set the formatting
149+
###Set the code formatting
155150
To avoid having changes all the time because of different formatting this project contains a formatting xml.
156151
Go to window->preferences->java->Code style->Formatter import codeformat.xml in the root of the repo.
157152

158153
###Running the plugin
159154

160-
161155
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)
162156

163157
Eclipse will launch a new workbench disabling the installed version if any of the plugin and updating with the plugins in the current workspace.
164158

165-
166159
images_plugin_dev_setup/running_check_versions.png
167160

168161

@@ -171,5 +164,5 @@ Preferences/Arduino to point to IDE and private libs
171164

172165
New Project, Arduino, New Arduino Sketch
173166

174-
167+
All should work. You can set breakpoints in the launching Eclipse if you ran as debug. Happy developing!
175168

0 commit comments

Comments
 (0)