diff --git a/build/macosx/Arduino.xcodeproj/project.pbxproj b/build/macosx/Arduino.xcodeproj/project.pbxproj index 2c8016846..a0afcc7c4 100644 --- a/build/macosx/Arduino.xcodeproj/project.pbxproj +++ b/build/macosx/Arduino.xcodeproj/project.pbxproj @@ -56,7 +56,7 @@ productName = App; productReference = 33DD8FB6096AC8DA0013AF8F /* Arduino.app */; productSettingsXML = " - + CFBundleDevelopmentRegion @@ -687,6 +687,7 @@ 33FFFD3F0965B1E40016AC38 /* Project object */ = { isa = PBXProject; buildConfigurationList = 33FFFD400965B1E40016AC38 /* Build configuration list for PBXProject "Arduino" */; + compatibilityVersion = "Xcode 2.4"; hasScannedForEncodings = 0; mainGroup = 33FFFD3D0965B1E40016AC38; productRefGroup = 33FFFD3D0965B1E40016AC38; diff --git a/readme.txt b/readme.txt index 10942d2d0..e65e55d73 100644 --- a/readme.txt +++ b/readme.txt @@ -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 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 +* On the Mac, mount the FTDIUSBSerialDriver_v2_1_9.dmg (on PPC Macs) or 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. * On Linux, drivers are included in kernel versions 2.4.20 or greater. @@ -46,7 +46,7 @@ Processing and Wiring. UPDATES -0011 +0011 - 2008.03.28 * Fixed Find in Reference. * Added map() function for mapping values from one range to another. @@ -54,15 +54,15 @@ UPDATES * Added interrupts() and noInterrupts() functions. * Added degrees() and radians() functions. * 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. * Placing function prototypes after #include's and #define's. * 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. Thanks to Peter Sgouros. * New script for downloading the reference from Tom Pollard. Thanks Tom! * Miscellaneous Mac OS X and other patches from Wim Lewis. Thanks Wim! +* Updated Mac OS X FTDI drivers. 0010 - 2007.10.11 diff --git a/todo.txt b/todo.txt index a96da5bd0..d2dc5b5c8 100644 --- a/todo.txt +++ b/todo.txt @@ -32,8 +32,8 @@ Add weak attribute to signal handlers (http://www.arduino.cc/cgi-bin/yabb2/YaBB. Incorporate ladyada's new SoftwareSerial library. Good way to receive multiple values / complex messages over the serial port. 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. -Fix millis() so it overflows on a nice variable-size boundary. Fix delayMicroseconds(0). Add sleep function(s). 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) Enable drag-and-drop of .pde files to Arduino dock icon. Allow uploading of .hex files. +Per-board upload.using preference. Allow for arbitrary compilation command line arguments. Find in reference should give same message for missing page as for missing page association. Test find in reference on libraries.