Skip to content

Commit 9afaf9c

Browse files
committed
refs #79 : update readme
_quick&dirty install instructions for fetching and building sources_
1 parent f6bf6fb commit 9afaf9c

File tree

1 file changed

+35
-3
lines changed

1 file changed

+35
-3
lines changed

README.md

Lines changed: 35 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,36 @@
1-
APDuinOS_workspace
2-
==================
1+
APDuinoProject-arduino
2+
======================
33

4-
Eclipse+AVR plugin based workspace with Arduino_Mega_2560 configuration
4+
Eclipse+AVR plugin based workspace with Arduino_Mega_2560 configuration
5+
6+
Pre-requisites:
7+
* Arduino IDE 1.0 installed, USB communications to Arduino Mega 2560 established
8+
* Eclipse + AVR plugin installed
9+
* git or Eclipse egit plugin installed
10+
11+
Install
12+
=======
13+
14+
# mostly shell-based with git:
15+
<pre>
16+
mkdir <a new workspace dir>
17+
cd <workspace dir>
18+
19+
# symlink or copy Arduino IDE files, choose between the following
20+
ln -s <path to Arduino IDE 1.0> ./arduino # symlink Arduino IDE 1.0 to ${WORKSPACE_DIR}/arduino
21+
cp -r <path to Arduino IDE 1.0> ./arduino # copy Arduino IDE 1.0 to ${WORKSPACE_DIR}/arduino
22+
23+
git clone https://github.com/srejbi/APDuinoProject-arduino.git
24+
git submodule init
25+
git submodule update
26+
</pre>
27+
28+
# In Eclipse, using egit
29+
* switch to a new workspace
30+
* import > Git > https://github.com/srejbi/APDuinoProject-arduino.git
31+
* tick submodule import and project creation
32+
33+
_Additional steps:_
34+
_In any case, configure AVR plugin (Preferences/Arduino) after, set the Arduino IDE location to @${WORKSPACE_DIR}/arduino@ and Arduino libraries to @${WORKSPACE_DIR}/arduino/libraries@_
35+
_Also, select the 'Arduino Mega 2560 or Mega ADK'/'16000000' values on the Arduino project prefs of the 'arduino_headless' project in the workspace._
36+
_Build should work after._

0 commit comments

Comments
 (0)