1
0
mirror of https://github.com/arduino/Arduino.git synced 2025-02-07 01:54:26 +01:00

Updates to the readme and todo list.

This commit is contained in:
David A. Mellis 2008-03-28 21:53:27 +00:00
parent e4f147ad42
commit ec426f2073
3 changed files with 9 additions and 7 deletions

View File

@ -56,7 +56,7 @@
productName = App; productName = App;
productReference = 33DD8FB6096AC8DA0013AF8F /* Arduino.app */; productReference = 33DD8FB6096AC8DA0013AF8F /* Arduino.app */;
productSettingsXML = "<?xml version=\"1.0\" encoding=\"UTF-8\"?> productSettingsXML = "<?xml version=\"1.0\" encoding=\"UTF-8\"?>
<!DOCTYPE plist PUBLIC \"-//Apple Computer//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\"> <!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">
<plist version=\"1.0\"> <plist version=\"1.0\">
<dict> <dict>
<key>CFBundleDevelopmentRegion</key> <key>CFBundleDevelopmentRegion</key>
@ -687,6 +687,7 @@
33FFFD3F0965B1E40016AC38 /* Project object */ = { 33FFFD3F0965B1E40016AC38 /* Project object */ = {
isa = PBXProject; isa = PBXProject;
buildConfigurationList = 33FFFD400965B1E40016AC38 /* Build configuration list for PBXProject "Arduino" */; buildConfigurationList = 33FFFD400965B1E40016AC38 /* Build configuration list for PBXProject "Arduino" */;
compatibilityVersion = "Xcode 2.4";
hasScannedForEncodings = 0; hasScannedForEncodings = 0;
mainGroup = 33FFFD3D0965B1E40016AC38; mainGroup = 33FFFD3D0965B1E40016AC38;
productRefGroup = 33FFFD3D0965B1E40016AC38; productRefGroup = 33FFFD3D0965B1E40016AC38;

View File

@ -24,8 +24,8 @@ FTDI chip on the board. These can be found in the drivers/ directory.
wizard to the drivers/FTDI USB Drivers sub-directory of the Arduino wizard to the drivers/FTDI USB Drivers sub-directory of the Arduino
application directory. application directory.
* On the Mac, mount the FTDIUSBSerialDriver_v2_1_6.dmg (on PPC Macs) or the * On the Mac, mount the FTDIUSBSerialDriver_v2_1_9.dmg (on PPC Macs) or the
FTDIUSBSerialDriver_v2_2_6_Intel.dmg (on Intel Macs) disk image and run the FTDIUSBSerialDriver_v2_2_9_Intel.dmg (on Intel Macs) disk image and run the
included FTDIUSBSerialDriver.pkg. You will need to restart your computer. included FTDIUSBSerialDriver.pkg. You will need to restart your computer.
* On Linux, drivers are included in kernel versions 2.4.20 or greater. * On Linux, drivers are included in kernel versions 2.4.20 or greater.
@ -46,7 +46,7 @@ Processing and Wiring.
UPDATES UPDATES
0011 0011 - 2008.03.28
* Fixed Find in Reference. * Fixed Find in Reference.
* Added map() function for mapping values from one range to another. * Added map() function for mapping values from one range to another.
@ -54,15 +54,15 @@ UPDATES
* Added interrupts() and noInterrupts() functions. * Added interrupts() and noInterrupts() functions.
* Added degrees() and radians() functions. * Added degrees() and radians() functions.
* Added timeout parameter (in microseconds) to pulseIn(); default is 1 second. * Added timeout parameter (in microseconds) to pulseIn(); default is 1 second.
* Support for uploading sketch using a programmer (upload.using preference). * Support for uploading sketch using a programmer.
* Improved detection of functions that need prototyping. * Improved detection of functions that need prototyping.
* Placing function prototypes after #include's and #define's. * Placing function prototypes after #include's and #define's.
* No longer moving #include statements to the top of the sketch. * No longer moving #include statements to the top of the sketch.
* Including a working version of the Firmata firmware.
* Can now drag .pde files onto the Arduino dock icon on Mac OS X. * Can now drag .pde files onto the Arduino dock icon on Mac OS X.
Thanks to Peter Sgouros. Thanks to Peter Sgouros.
* New script for downloading the reference from Tom Pollard. Thanks Tom! * New script for downloading the reference from Tom Pollard. Thanks Tom!
* Miscellaneous Mac OS X and other patches from Wim Lewis. Thanks Wim! * Miscellaneous Mac OS X and other patches from Wim Lewis. Thanks Wim!
* Updated Mac OS X FTDI drivers.
0010 - 2007.10.11 0010 - 2007.10.11

View File

@ -32,8 +32,8 @@ Add weak attribute to signal handlers (http://www.arduino.cc/cgi-bin/yabb2/YaBB.
Incorporate ladyada's new SoftwareSerial library. Incorporate ladyada's new SoftwareSerial library.
Good way to receive multiple values / complex messages over the serial port. Good way to receive multiple values / complex messages over the serial port.
Floating point support in the map() function. Floating point support in the map() function.
Fix millis() so it overflows on a nice variable-size boundary; see: http://www.arduino.cc/cgi-bin/yabb2/YaBB.pl?num=1205949448
Consider moving millis() to timer 1, and configuring it so the interrupt is generated once a millisecond. Consider moving millis() to timer 1, and configuring it so the interrupt is generated once a millisecond.
Fix millis() so it overflows on a nice variable-size boundary.
Fix delayMicroseconds(0). Fix delayMicroseconds(0).
Add sleep function(s). Add sleep function(s).
Add SPI library. Add SPI library.
@ -60,6 +60,7 @@ Automatic detection of baud rate for serial monitor (based on the call to Serial
Improve, generally, the upload experience (e.g. faster program start after upload, keep-alive messages to bootloader from IDE, shorter bootloader timeout if possible, progress bar) Improve, generally, the upload experience (e.g. faster program start after upload, keep-alive messages to bootloader from IDE, shorter bootloader timeout if possible, progress bar)
Enable drag-and-drop of .pde files to Arduino dock icon. Enable drag-and-drop of .pde files to Arduino dock icon.
Allow uploading of .hex files. Allow uploading of .hex files.
Per-board upload.using preference.
Allow for arbitrary compilation command line arguments. Allow for arbitrary compilation command line arguments.
Find in reference should give same message for missing page as for missing page association. Find in reference should give same message for missing page as for missing page association.
Test find in reference on libraries. Test find in reference on libraries.