mirror of
https://github.com/arduino/Arduino.git
synced 2025-02-18 12:54:25 +01:00
Removed carriage returns from Windows dist.sh and updated readme.txt to mention Linux distribution.
This commit is contained in:
parent
122bee43c6
commit
af20a36b6f
@ -1,128 +1,128 @@
|
||||
#!/bin/sh
|
||||
|
||||
REVISION=`head -c 4 ../../todo.txt`
|
||||
|
||||
# check to see if the version number in the app is correct
|
||||
# so that mikkel doesn't kick my ass
|
||||
VERSIONED=`cat ../../app/Base.java | grep $REVISION`
|
||||
if [ -z "$VERSIONED" ]
|
||||
then
|
||||
echo Fix the revision number in Base.java
|
||||
exit
|
||||
fi
|
||||
|
||||
./make.sh
|
||||
|
||||
echo Creating P5 distribution for revision $REVISION...
|
||||
echo
|
||||
|
||||
# remove any old boogers
|
||||
rm -rf arduino
|
||||
rm -rf arduino-*
|
||||
|
||||
# use 'shared' files as starting point
|
||||
cp -r ../shared arduino
|
||||
mkdir arduino
|
||||
cp -r work/lib/targets arduino/lib
|
||||
|
||||
# new style examples thing ala reas
|
||||
#cd arduino
|
||||
#mkdir examples
|
||||
#unzip -d examples -q dist/examples.zip
|
||||
#rm dist/examples.zip
|
||||
#rm -rf dist
|
||||
#cd ..
|
||||
|
||||
mv arduino/dist/examples arduino/examples
|
||||
rm -rf arduino/dist
|
||||
|
||||
# extract reference
|
||||
cd arduino
|
||||
unzip reference.zip
|
||||
rm reference.zip
|
||||
cd ..
|
||||
|
||||
# add java (jre) files
|
||||
unzip -q -d arduino jre.zip
|
||||
|
||||
# copy stuff from work/
|
||||
cp -r work/tools arduino
|
||||
cp -r work/bootloader arduino
|
||||
cp -r work/drivers arduino
|
||||
#cp -r work/examples arduino
|
||||
|
||||
# directories used by the app
|
||||
#mkdir arduino/lib/build
|
||||
|
||||
# grab pde.jar and export from the working dir
|
||||
cp work/lib/pde.jar arduino/lib/
|
||||
cp work/java/lib/rt.jar arduino/lib/
|
||||
#cp work/lib/core.jar arduino/lib/
|
||||
#cp -r work/lib/export arduino/lib/
|
||||
#rm -rf arduino/lib/export/CVS
|
||||
|
||||
# get jikes and depedencies
|
||||
#gunzip < dist/jikes.gz > arduino/jikes.exe
|
||||
cp dist/jikes.exe arduino/
|
||||
chmod +x arduino/jikes.exe
|
||||
|
||||
cp dist/ICE_JNIRegistry.dll arduino/
|
||||
chmod +x arduino/ICE_JNIRegistry.dll
|
||||
cp work/rxtxSerial.dll arduino/
|
||||
chmod +x arduino/rxtxSerial.dll
|
||||
cp work/*.dll arduino
|
||||
chmod +x arduino/*.dll
|
||||
|
||||
# get platform-specific goodies from the dist dir
|
||||
cp launcher/arduino.exe arduino/
|
||||
cp dist/run.bat arduino/
|
||||
chmod +x arduino/run.bat
|
||||
|
||||
# convert notes.txt to windows LFs
|
||||
# the 2> is because the app is a little chatty
|
||||
unix2dos arduino/revisions.txt 2> /dev/null
|
||||
unix2dos arduino/lib/preferences.txt 2> /dev/null
|
||||
unix2dos arduino/lib/keywords.txt 2> /dev/null
|
||||
rm -f arduino/*.bak
|
||||
rm -f arduino/lib/*.bak
|
||||
|
||||
# remove boogers
|
||||
find arduino -name "*~" -exec rm -f {} ';'
|
||||
find arduino -name ".DS_Store" -exec rm -f {} ';'
|
||||
find arduino -name "._*" -exec rm -f {} ';'
|
||||
find arduino -name "Thumbs.db" -exec rm -f {} ';'
|
||||
|
||||
# chmod +x the crew
|
||||
find arduino -name "*.dll" -exec chmod +x {} ';'
|
||||
find arduino -name "*.exe" -exec chmod +x {} ';'
|
||||
find arduino -name "*.html" -exec chmod +x {} ';'
|
||||
|
||||
# clean out the svn entries
|
||||
find arduino -name ".svn" -exec rm -rf {} ';' 2> /dev/null
|
||||
|
||||
# zip it all up for release
|
||||
echo Packaging standard release...
|
||||
echo
|
||||
P5=arduino-$REVISION
|
||||
mv arduino $P5
|
||||
zip -rq $P5.zip $P5
|
||||
# nah, keep the new directory around
|
||||
#rm -rf $P5
|
||||
|
||||
# zip up another for experts
|
||||
echo Packaging expert release...
|
||||
echo
|
||||
|
||||
cp -a $P5 $P5-expert
|
||||
|
||||
# can't use the run.bat that's tied to a local jre
|
||||
rm $P5-expert/run.bat
|
||||
cp dist/run-expert.bat $P5-expert/run.bat
|
||||
chmod +x $P5-expert/run.bat
|
||||
|
||||
# remove enormous java runtime
|
||||
rm -rf $P5-expert/java
|
||||
zip -rq $P5-expert.zip $P5-expert
|
||||
|
||||
echo Done.
|
||||
|
||||
#!/bin/sh
|
||||
|
||||
REVISION=`head -c 4 ../../todo.txt`
|
||||
|
||||
# check to see if the version number in the app is correct
|
||||
# so that mikkel doesn't kick my ass
|
||||
VERSIONED=`cat ../../app/Base.java | grep $REVISION`
|
||||
if [ -z "$VERSIONED" ]
|
||||
then
|
||||
echo Fix the revision number in Base.java
|
||||
exit
|
||||
fi
|
||||
|
||||
./make.sh
|
||||
|
||||
echo Creating P5 distribution for revision $REVISION...
|
||||
echo
|
||||
|
||||
# remove any old boogers
|
||||
rm -rf arduino
|
||||
rm -rf arduino-*
|
||||
|
||||
# use 'shared' files as starting point
|
||||
cp -r ../shared arduino
|
||||
mkdir arduino
|
||||
cp -r work/lib/targets arduino/lib
|
||||
|
||||
# new style examples thing ala reas
|
||||
#cd arduino
|
||||
#mkdir examples
|
||||
#unzip -d examples -q dist/examples.zip
|
||||
#rm dist/examples.zip
|
||||
#rm -rf dist
|
||||
#cd ..
|
||||
|
||||
mv arduino/dist/examples arduino/examples
|
||||
rm -rf arduino/dist
|
||||
|
||||
# extract reference
|
||||
cd arduino
|
||||
unzip reference.zip
|
||||
rm reference.zip
|
||||
cd ..
|
||||
|
||||
# add java (jre) files
|
||||
unzip -q -d arduino jre.zip
|
||||
|
||||
# copy stuff from work/
|
||||
cp -r work/tools arduino
|
||||
cp -r work/bootloader arduino
|
||||
cp -r work/drivers arduino
|
||||
#cp -r work/examples arduino
|
||||
|
||||
# directories used by the app
|
||||
#mkdir arduino/lib/build
|
||||
|
||||
# grab pde.jar and export from the working dir
|
||||
cp work/lib/pde.jar arduino/lib/
|
||||
cp work/java/lib/rt.jar arduino/lib/
|
||||
#cp work/lib/core.jar arduino/lib/
|
||||
#cp -r work/lib/export arduino/lib/
|
||||
#rm -rf arduino/lib/export/CVS
|
||||
|
||||
# get jikes and depedencies
|
||||
#gunzip < dist/jikes.gz > arduino/jikes.exe
|
||||
cp dist/jikes.exe arduino/
|
||||
chmod +x arduino/jikes.exe
|
||||
|
||||
cp dist/ICE_JNIRegistry.dll arduino/
|
||||
chmod +x arduino/ICE_JNIRegistry.dll
|
||||
cp work/rxtxSerial.dll arduino/
|
||||
chmod +x arduino/rxtxSerial.dll
|
||||
cp work/*.dll arduino
|
||||
chmod +x arduino/*.dll
|
||||
|
||||
# get platform-specific goodies from the dist dir
|
||||
cp launcher/arduino.exe arduino/
|
||||
cp dist/run.bat arduino/
|
||||
chmod +x arduino/run.bat
|
||||
|
||||
# convert notes.txt to windows LFs
|
||||
# the 2> is because the app is a little chatty
|
||||
unix2dos arduino/revisions.txt 2> /dev/null
|
||||
unix2dos arduino/lib/preferences.txt 2> /dev/null
|
||||
unix2dos arduino/lib/keywords.txt 2> /dev/null
|
||||
rm -f arduino/*.bak
|
||||
rm -f arduino/lib/*.bak
|
||||
|
||||
# remove boogers
|
||||
find arduino -name "*~" -exec rm -f {} ';'
|
||||
find arduino -name ".DS_Store" -exec rm -f {} ';'
|
||||
find arduino -name "._*" -exec rm -f {} ';'
|
||||
find arduino -name "Thumbs.db" -exec rm -f {} ';'
|
||||
|
||||
# chmod +x the crew
|
||||
find arduino -name "*.dll" -exec chmod +x {} ';'
|
||||
find arduino -name "*.exe" -exec chmod +x {} ';'
|
||||
find arduino -name "*.html" -exec chmod +x {} ';'
|
||||
|
||||
# clean out the svn entries
|
||||
find arduino -name ".svn" -exec rm -rf {} ';' 2> /dev/null
|
||||
|
||||
# zip it all up for release
|
||||
echo Packaging standard release...
|
||||
echo
|
||||
P5=arduino-$REVISION
|
||||
mv arduino $P5
|
||||
zip -rq $P5.zip $P5
|
||||
# nah, keep the new directory around
|
||||
#rm -rf $P5
|
||||
|
||||
# zip up another for experts
|
||||
echo Packaging expert release...
|
||||
echo
|
||||
|
||||
cp -a $P5 $P5-expert
|
||||
|
||||
# can't use the run.bat that's tied to a local jre
|
||||
rm $P5-expert/run.bat
|
||||
cp dist/run-expert.bat $P5-expert/run.bat
|
||||
chmod +x $P5-expert/run.bat
|
||||
|
||||
# remove enormous java runtime
|
||||
rm -rf $P5-expert/java
|
||||
zip -rq $P5-expert.zip $P5-expert
|
||||
|
||||
echo Done.
|
||||
|
||||
|
326
readme.txt
326
readme.txt
@ -1,162 +1,164 @@
|
||||
Arduino is an open-source physical computing platform based on a simple i/o
|
||||
board and a development environment that implements the Processing/Wiring
|
||||
language. Arduino can be used to develop stand-alone interactive objects or
|
||||
can be connected to software on your computer (e.g. Flash, Processing, MaxMSP).
|
||||
The boards can be assembled by hand or purchased preassembled; the open-source
|
||||
IDE can be downloaded for free.
|
||||
|
||||
For more information, see the website at: http://www.arduino.cc/
|
||||
or the forums at: http://www.arduino.cc/cgi-bin/yabb2/YaBB.pl
|
||||
|
||||
To report a bug or a make a suggestions, go to:
|
||||
[hardware] http://www.arduino.cc/cgi-bin/yabb2/YaBB.pl?board=hwbugs
|
||||
[software] http://www.arduino.cc/cgi-bin/yabb2/YaBB.pl?board=swbugs
|
||||
|
||||
INSTALLATION
|
||||
Detailed instructions are in reference/Guide_Windows.html and
|
||||
reference/Guide_MacOSX.html. For Linux, see the Arduino playground:
|
||||
http://www.arduino.cc/playground/Learning/Linux
|
||||
|
||||
If you are using a USB Arduino, you will need to install the drivers for the
|
||||
FTDI chip on the board. These can be found in the drivers/ directory.
|
||||
|
||||
* On Windows, plug in the Arduino board and point the Windows Add Hardware
|
||||
wizard to the drivers/FTDI USB Drivers sub-directory of the Arduino
|
||||
application directory.
|
||||
|
||||
* On the Mac, mount the FTDIUSBSerialDriver_v2_1_6.dmg (on PPC Macs) or the
|
||||
FTDIUSBSerialDriver_v2_2_6_Intel.dmg (on Intel Macs) disk image and run the
|
||||
included FTDIUSBSerialDriver.pkg. You will need to restart your computer.
|
||||
|
||||
* On Linux, drivers are included in kernel versions 2.4.20 or greater.
|
||||
|
||||
CREDITS
|
||||
Arduino is an open source project, owned by nobody and supported by many.
|
||||
|
||||
The Arduino team is composed of Massimo Banzi, David Cuartielles, Tom Igoe,
|
||||
Gianluca Martino, and David A. Mellis.
|
||||
|
||||
Nicholas Zambetti has contributed from the beginning.
|
||||
|
||||
Yaniv Steiner and Giorgio Olivero have been supporting the project and are
|
||||
working at using it with the Instant Soup platform.
|
||||
|
||||
Arduino uses the GNU avr-gcc toolchain, uisp, avr-libc, avrlib, and code
|
||||
from Processing and Wiring.
|
||||
|
||||
UPDATES
|
||||
|
||||
0007 - 2006.12.25
|
||||
|
||||
* Smaller core (about 3.5 KB instead of 4.5 KB).
|
||||
* Added a SoftwareSerial library (thanks to Antonio, Heather Dewey-Hagborg, and
|
||||
bigengineer for their help).
|
||||
* Implemented a Serial.flush() routine; see reference for details.
|
||||
* Digital pins 0 and 1 can be used for i/o until a call to Serial.begin().
|
||||
* Replaced avr-lib's uart routines with custom code for handling serial
|
||||
communication and modified C++ serial commands to call the C serial commands;
|
||||
the code may behave slightly differently in border cases (e.g. non-standard
|
||||
speeds, or on overflow).
|
||||
* Added attachInterrupt() and detachInterrupt() functions for handling of
|
||||
external interrupts on pins 2 and 3.
|
||||
* Implemented shiftOut() routine; see reference for details.
|
||||
* Defining binary constants: e.g. B1010 is 6.
|
||||
* Mac versions no longer require running of the macosx_setup.command script.
|
||||
* Windows version comes with the FTDI USB drivers already unzipped.
|
||||
|
||||
0006 - 2006.10.21
|
||||
|
||||
* Mac version no longer requires Java 1.5, meaning it should run on 10.3.9.
|
||||
* Added support for analog inputs 6 and 7 and pwm on pins 5 and 6 on the
|
||||
on the ATmega168 used in the Arduino Mini (extra analog inputs not available
|
||||
in DIP ATmega168s).
|
||||
* You now select the baud rate for the serial monitor from within the editor
|
||||
status bar when the serial monitor is running instead of from the Tools menu.
|
||||
* Pressing enter within the serial monitor edit box no longer appends a newline
|
||||
to the message sent to the board.
|
||||
* Included the Wire (TWI) library from Wiring.
|
||||
* Updated the reference.
|
||||
|
||||
0005 - 2006.09.26
|
||||
|
||||
* Applied patch from Hans Steiner to improve Linux support by searching for avr
|
||||
tools in the user's path instead of expecting them at a fixed location.
|
||||
* Added an upload.verbose preference for help in debugging.
|
||||
* ATmega168 support!
|
||||
* New Wiring-compatible randomSeed(), random(max) and random(min, max) functions
|
||||
(except operating on longs instead of floats).
|
||||
* Fixed bug that sometimes caused uploading of old versions of a sketch.
|
||||
* Serial monitor nows include an interface to send messages to the Arduino
|
||||
board. Pressing return appends a newline, pushing the send button doesn't.
|
||||
* Now displaying "burning bootloader..." and "compiling..." status messages.
|
||||
|
||||
0004 - 2006.04.26
|
||||
|
||||
* Main sketch is now compiled as C++ (instead of C).
|
||||
* Updated avr toolchain.
|
||||
* printInteger(), printHex(), etc. now handle longs.
|
||||
* millis() fixed (now overflows after days, not minutes)
|
||||
* Fixed path to java in Windows run.bat.
|
||||
* Added Matrix and Sprite libraries (written with Nicholas Zambetti).
|
||||
* PWM now working on pin 11 (in addition to pins 9 and 10).
|
||||
* Slowed PWM frequency (on all three PWM pins) to 1KHz.
|
||||
* Now give an error if compiled sketch is too big.
|
||||
* Fixed abs(), min(), max(), and constrain() macros.
|
||||
* Added menu items to the IDE to burn bootloader.
|
||||
* Now display binary sketch size on upload, and give error if too big.
|
||||
* Added C++ serial library.
|
||||
* Resynced with Processing/Wiring IDE code (improved auto-format, faster logging
|
||||
to serial monitor console, other bug fixes)
|
||||
* New library system.
|
||||
* Updated to latest version of the RXTX serial library; Mac users will need to
|
||||
rerun macosx_setup.command.
|
||||
|
||||
0003 - 2006.01.16
|
||||
|
||||
API Changes
|
||||
* 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.
|
||||
* Added a printNewline() function (which sends '\n' = ASCII 10).
|
||||
|
||||
New Stuff
|
||||
* Reference is included (features native to C not yet documented).
|
||||
* Serial monitor added (click the toolbar button to turn it on or off). Baud
|
||||
rate is controlled by the Serial Monitor Baud Rate Menu, defaults to 9600.
|
||||
Icon and implementation from Wiring.
|
||||
* Serial port menu now automatically refreshes when opened.
|
||||
* New blue color scheme and icons courtesy of Noah Shibley (colors are hardcoded
|
||||
into the source to ensure consistency with image files).
|
||||
* Keyspan and FTDI USB drivers included with Mac and Windows distributions.
|
||||
|
||||
Bug Fixes
|
||||
* millis() now updates every millisecond instead of every second.
|
||||
* Bootloader included with Windows distribution (it was already in the Mac
|
||||
dist).
|
||||
* Updated icon of the Windows executable.
|
||||
* Now flushing the serial port before uploading (should fix some errors).
|
||||
* Improved accuracy of the delayMicroseconds() function.
|
||||
|
||||
Other
|
||||
* Upload rate no longer selectable from a menu within the IDE. Instead, edit
|
||||
the serial.download_rate item in the preferences.txt file.
|
||||
* Created Xcode project for building Arduino on the Mac (doesn't yet regenerate
|
||||
the grammar files or package the distribution); active target should be "App".
|
||||
* Removed unused or unimplemented items from menus.
|
||||
|
||||
0002 - 2005.10.05
|
||||
|
||||
* New build process no longer uses makefiles; now controlled by preferences.txt.
|
||||
* core/ replaced with targets/; can now link against Wiring libraries.
|
||||
* Replaced print() with printString, printInteger, printHex, printByte, etc.
|
||||
* Added menu for selecting serial port speed.
|
||||
* Updated icon.
|
||||
* Bootloader shrunk to less than 1 KB; fuses updated accordingly.
|
||||
* Added serialRead(), serialAvailable(), and delayMicroseconds().
|
||||
|
||||
0001 - 2005.08.25
|
||||
|
||||
* 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.
|
||||
Arduino is an open-source physical computing platform based on a simple i/o
|
||||
board and a development environment that implements the Processing/Wiring
|
||||
language. Arduino can be used to develop stand-alone interactive objects or
|
||||
can be connected to software on your computer (e.g. Flash, Processing, MaxMSP).
|
||||
The boards can be assembled by hand or purchased preassembled; the open-source
|
||||
IDE can be downloaded for free.
|
||||
|
||||
For more information, see the website at: http://www.arduino.cc/
|
||||
or the forums at: http://www.arduino.cc/cgi-bin/yabb2/YaBB.pl
|
||||
|
||||
To report a bug or a make a suggestions, go to:
|
||||
[hardware] http://www.arduino.cc/cgi-bin/yabb2/YaBB.pl?board=hwbugs
|
||||
[software] http://www.arduino.cc/cgi-bin/yabb2/YaBB.pl?board=swbugs
|
||||
|
||||
INSTALLATION
|
||||
Detailed instructions are in reference/Guide_Windows.html and
|
||||
reference/Guide_MacOSX.html. For Linux, see the Arduino playground:
|
||||
http://www.arduino.cc/playground/Learning/Linux
|
||||
|
||||
If you are using a USB Arduino, you will need to install the drivers for the
|
||||
FTDI chip on the board. These can be found in the drivers/ directory.
|
||||
|
||||
* On Windows, plug in the Arduino board and point the Windows Add Hardware
|
||||
wizard to the drivers/FTDI USB Drivers sub-directory of the Arduino
|
||||
application directory.
|
||||
|
||||
* On the Mac, mount the FTDIUSBSerialDriver_v2_1_6.dmg (on PPC Macs) or the
|
||||
FTDIUSBSerialDriver_v2_2_6_Intel.dmg (on Intel Macs) disk image and run the
|
||||
included FTDIUSBSerialDriver.pkg. You will need to restart your computer.
|
||||
|
||||
* On Linux, drivers are included in kernel versions 2.4.20 or greater.
|
||||
|
||||
CREDITS
|
||||
Arduino is an open source project, owned by nobody and supported by many.
|
||||
|
||||
The Arduino team is composed of Massimo Banzi, David Cuartielles, Tom Igoe,
|
||||
Gianluca Martino, and David A. Mellis.
|
||||
|
||||
Nicholas Zambetti has contributed from the beginning.
|
||||
|
||||
Yaniv Steiner and Giorgio Olivero have been supporting the project and are
|
||||
working at using it with the Instant Soup platform.
|
||||
|
||||
Arduino uses the GNU avr-gcc toolchain, uisp, avr-libc, avrlib, and code
|
||||
from Processing and Wiring.
|
||||
|
||||
UPDATES
|
||||
|
||||
0007 - 2006.12.25
|
||||
|
||||
* Smaller core (about 3.5 KB instead of 4.5 KB).
|
||||
* Added a SoftwareSerial library (thanks to Antonio, Heather Dewey-Hagborg, and
|
||||
bigengineer for their help).
|
||||
* Implemented a Serial.flush() routine; see reference for details.
|
||||
* Digital pins 0 and 1 can be used for i/o until a call to Serial.begin().
|
||||
* Replaced avr-lib's uart routines with custom code for handling serial
|
||||
communication and modified C++ serial commands to call the C serial commands;
|
||||
the code may behave slightly differently in border cases (e.g. non-standard
|
||||
speeds, or on overflow).
|
||||
* Added attachInterrupt() and detachInterrupt() functions for handling of
|
||||
external interrupts on pins 2 and 3.
|
||||
* Implemented shiftOut() routine; see reference for details.
|
||||
* Defining binary constants: e.g. B1010 is 6.
|
||||
* Mac versions no longer require running of the macosx_setup.command script.
|
||||
* Windows version comes with the FTDI USB drivers already unzipped.
|
||||
* New Linux binary distribution (still requires some programs to be
|
||||
pre-installed).
|
||||
|
||||
0006 - 2006.10.21
|
||||
|
||||
* Mac version no longer requires Java 1.5, meaning it should run on 10.3.9.
|
||||
* Added support for analog inputs 6 and 7 and pwm on pins 5 and 6 on the
|
||||
on the ATmega168 used in the Arduino Mini (extra analog inputs not available
|
||||
in DIP ATmega168s).
|
||||
* You now select the baud rate for the serial monitor from within the editor
|
||||
status bar when the serial monitor is running instead of from the Tools menu.
|
||||
* Pressing enter within the serial monitor edit box no longer appends a newline
|
||||
to the message sent to the board.
|
||||
* Included the Wire (TWI) library from Wiring.
|
||||
* Updated the reference.
|
||||
|
||||
0005 - 2006.09.26
|
||||
|
||||
* Applied patch from Hans Steiner to improve Linux support by searching for avr
|
||||
tools in the user's path instead of expecting them at a fixed location.
|
||||
* Added an upload.verbose preference for help in debugging.
|
||||
* ATmega168 support!
|
||||
* New Wiring-compatible randomSeed(), random(max) and random(min, max) functions
|
||||
(except operating on longs instead of floats).
|
||||
* Fixed bug that sometimes caused uploading of old versions of a sketch.
|
||||
* Serial monitor nows include an interface to send messages to the Arduino
|
||||
board. Pressing return appends a newline, pushing the send button doesn't.
|
||||
* Now displaying "burning bootloader..." and "compiling..." status messages.
|
||||
|
||||
0004 - 2006.04.26
|
||||
|
||||
* Main sketch is now compiled as C++ (instead of C).
|
||||
* Updated avr toolchain.
|
||||
* printInteger(), printHex(), etc. now handle longs.
|
||||
* millis() fixed (now overflows after days, not minutes)
|
||||
* Fixed path to java in Windows run.bat.
|
||||
* Added Matrix and Sprite libraries (written with Nicholas Zambetti).
|
||||
* PWM now working on pin 11 (in addition to pins 9 and 10).
|
||||
* Slowed PWM frequency (on all three PWM pins) to 1KHz.
|
||||
* Now give an error if compiled sketch is too big.
|
||||
* Fixed abs(), min(), max(), and constrain() macros.
|
||||
* Added menu items to the IDE to burn bootloader.
|
||||
* Now display binary sketch size on upload, and give error if too big.
|
||||
* Added C++ serial library.
|
||||
* Resynced with Processing/Wiring IDE code (improved auto-format, faster logging
|
||||
to serial monitor console, other bug fixes)
|
||||
* New library system.
|
||||
* Updated to latest version of the RXTX serial library; Mac users will need to
|
||||
rerun macosx_setup.command.
|
||||
|
||||
0003 - 2006.01.16
|
||||
|
||||
API Changes
|
||||
* 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.
|
||||
* Added a printNewline() function (which sends '\n' = ASCII 10).
|
||||
|
||||
New Stuff
|
||||
* Reference is included (features native to C not yet documented).
|
||||
* Serial monitor added (click the toolbar button to turn it on or off). Baud
|
||||
rate is controlled by the Serial Monitor Baud Rate Menu, defaults to 9600.
|
||||
Icon and implementation from Wiring.
|
||||
* Serial port menu now automatically refreshes when opened.
|
||||
* New blue color scheme and icons courtesy of Noah Shibley (colors are hardcoded
|
||||
into the source to ensure consistency with image files).
|
||||
* Keyspan and FTDI USB drivers included with Mac and Windows distributions.
|
||||
|
||||
Bug Fixes
|
||||
* millis() now updates every millisecond instead of every second.
|
||||
* Bootloader included with Windows distribution (it was already in the Mac
|
||||
dist).
|
||||
* Updated icon of the Windows executable.
|
||||
* Now flushing the serial port before uploading (should fix some errors).
|
||||
* Improved accuracy of the delayMicroseconds() function.
|
||||
|
||||
Other
|
||||
* Upload rate no longer selectable from a menu within the IDE. Instead, edit
|
||||
the serial.download_rate item in the preferences.txt file.
|
||||
* Created Xcode project for building Arduino on the Mac (doesn't yet regenerate
|
||||
the grammar files or package the distribution); active target should be "App".
|
||||
* Removed unused or unimplemented items from menus.
|
||||
|
||||
0002 - 2005.10.05
|
||||
|
||||
* New build process no longer uses makefiles; now controlled by preferences.txt.
|
||||
* core/ replaced with targets/; can now link against Wiring libraries.
|
||||
* Replaced print() with printString, printInteger, printHex, printByte, etc.
|
||||
* Added menu for selecting serial port speed.
|
||||
* Updated icon.
|
||||
* Bootloader shrunk to less than 1 KB; fuses updated accordingly.
|
||||
* Added serialRead(), serialAvailable(), and delayMicroseconds().
|
||||
|
||||
0001 - 2005.08.25
|
||||
|
||||
* 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.
|
||||
|
Loading…
x
Reference in New Issue
Block a user