Updated build instructions; added Id keyword support to all files.

This commit is contained in:
David A. Mellis 2005-11-29 13:42:50 +00:00
parent 0e57892467
commit 1178dc4d82
2 changed files with 9 additions and 23 deletions

View File

@ -17,7 +17,7 @@ With frequently asked questions, scroll to the end of the file.
+ svn - used for version control
+ make, gcc-mingw, and g++ - used to build processing.exe
+ make, gcc-mingw, and g++ - used to build arduino.exe
(this will also pull in gcc-core)
+ perl - use this version, activestate or other distros have trouble
@ -60,22 +60,7 @@ svn co svn://svn.berlios.de/arduino/trunk
# (maybe even a long while for you dialup and international folks)
3. INSTALL QUICKTIME FOR JAVA (windows users only)
* you'll also need to install quicktime for java. grab a quicktime
installer from: http://www.apple.com/quicktime/download/
don't try to be sly & use the itunes installer. we all love itunes
but it doesn't include quicktime for java by default. or if you were
sly, you might need to read the point below about using the updater:
* if you already have quicktime installed, just make sure that
quicktime for java has already been installed, use the quicktime
updater (Program Files -> QuickTime -> QuickTime Updater) hit the
'Details' button in the updater, and if it lists "Not installed"
for "QuickTime for Java", well, take care of that.
4. BUILD IT
3. BUILD IT
# now to build for the first time:
cd /path/to/arduino/build/windows
@ -104,13 +89,13 @@ cd /path/to/arduino/build/macosx
//// Updating to the Latest Version
5a. Each time you want to update to latest version from cvs:
4a. Each time you want to update to latest version from cvs:
cd /path/to/arduino
svn update
5b. If new folders have been added, or you're gettin odd errors, use:
4b. If new folders have been added, or you're gettin odd errors, use:
# remove the work directory
rm -rf work

View File

@ -4,6 +4,8 @@ language.
Arduino is an open source project, owned by nobody and supported by many.
For more information, see the website at: http://arduino.berlios.de/
The Team is composed of Massimo Banzi, David Cuartielles, Tom Igoe,
David Mellis and Nicholas Zambetti.
@ -15,13 +17,14 @@ working at using it with the Instant Soup platform.
0003
millis() now updates every millisecond instead of every second.
FTDI USB drivers included with Mac and Windows distributions.
Bootloader included with Windows distribution.
Keyspan and FTDI USB drivers included with Mac and Windows distributions.
Bootloader included with Windows distribution (it was already in the Mac dist).
Reversed the analog input pins to correspond to newer boards. This means
a call, for example, to analogRead(0) must be changed to analogRead(5) in
order to read the same physical pin.
Now flushing the serial port before uploading (should fix some errors).
Added a printNewline() function.
Updated icon of the Windows executable.
0002 - 2005.10.05
New build process no longer uses makefiles; now controlled by preferences.txt.
@ -37,5 +40,3 @@ This is the first released of the unified IDE + language library
it's a terrible hack... but it works. at the moment it's in alpha stage
but it can be used to work.
The processing preprocessor is included but not used.
mbanzi