Revisions
Revisions
Revisions
9
[ide]
* Catch and report errors during parsing contributed index files
* Fixed IDE version color on about dialog box. Thanks @ivanebernal
* The "always-on-top update notification" popup is now less intrusive.
* Fixed untraslated string during IDE startup splash window. Thanks @ivanebernal
* New arduino-builder: better core library detection, faster operations when rec
ompiling and more.
See https://github.com/arduino/arduino-builder/compare/1.3.9...1.3.15
* Fixed multitab error reporting
* Rework serial port discovery to be faster, less cpu intensive and FTDI friendl
y
* Avoid launching multiple concurrent compile and upload operation
* Use hi-res icons for Serial monitor and plotter
* Make http://librarymanager and http://boardmanager links clickable from the ed
itor window
* Cut/Copy actions are disable when there is no text selected. Thanks @avargas-n
earsoft
* Added more OSX native (emacs-like) keybindings. Thanks @nopdotcom
* Fixed Ctrl+Del: now deletes the word behind the cursor instead of the entire l
ine. Thanks @avargas-nearsoft
* Fixed "Verify code after upload" option in preferences. Thanks @gh-megabit
[core]
* String class now supports iterators. Thanks @Chris--A
* sam: Allow 3rd party boards that depend on SAM core to use their own
USB vid/pid and manufacturer/product strings. Thanks @philmanofsky.
* avr: Check at runtime if 32u4 boards are shipped with new bootloader; if so
write bootloader magic value in an unproblematic RAM location
* avr, sam: Added "reciper.ar.pattern" to plaform.txt to allow compatibility
with older version of Arduino IDE. Thanks @per1234
[libraries]
ARDUINO 1.6.8 - 2016.03.09
[ide]
* Added support for GUI interface scaling for UHD monitors.
Thanks to all contributors and testers:
https://github.com/arduino/Arduino/pull/4376
https://github.com/arduino/Arduino/pull/2776
* Editor position is saved when closing with Alt+F4 or clicking on the "X" butto
n. Thanks @willie68
* Fixed a NullPointerException when dealing with some rare combination of packag
e_*.json files
* Fixed incorrect key bindings handling for changing tab. Thanks @matthijskooijm
an
* MacOSX: Fixed handling of add indent/remove indent shortcuts (CMD+[ and CMD+])
* Fixed incorrect update of available libraries in Library Manager. Thanks @vicn
evicne
* Serial plotter now correctly resize graphs with negative values. Thanks @vicne
vicne
* Improved sketch preprocessor when handling C++11 keywords. Thanks @matthijskoo
ijman @igrr
* Updates to keyword pigmentation to match Create
* Fixed display of LITERAL1 keywords
* Added target board information when "Error compiling" message is displayed. Th
anks @PaulStoffregen
[core]
* avr:
* avr:
* sam:
* avr:
* avr:
* sam:
fixed USB_SendControl(...) for buffer with len > 64. Thanks @NicoHood
fixed yield() usage inside delay(). Thanks @vbextreme
fixed USB descriptor length
reduced boiler-plate for ISR declarations. Thanks @paulo-raca
added Timer3 support for atmega1284/1284p. Thanks @feilipu
added USB CDC send break support and readBreak API
[libraries]
* Added support for Arduino/Genuino 101 to: TFT, Ethernet, SD
* SD: the library is now board-agnostic. Thanks @feilipu
ARDUINO 1.6.7 - 2015.12.17
[ide]
* New arduino-builder: faster, better prototype generation and library discovery
logic, and more. See https://github.com/arduino/arduino-builder/compare/1.0.5..
.1.3.9
* Serial plotter now allows to plot multiple values at once. Thanks @henningpohl
* New translations
* Added support to file:// protocol for boards manager URLs
* Portable sketchbook folder can now be any arbitrary location
* Fixed a bug that caused Boards Manager to install the same tool twice or more,
thus wasting disk space, if other cores where using tools delivered by arduino
* Fixed various Boards manager glitches, in particular when removing a board
* Windows: Arduino IDE icon is now in high definition, bye bye that blurry icon
* Remote upload without SSH is now supported (allows OTA upload for many 3rd par
ty boards). Thanks @me-no-dev.
[libraries]
* SPI: Added SPI.transfer16(...) function to SAM core.
* Ethernet, WiFi, SoftwareSerial: Fixed flush() behaviour:
the flush function is no more dropping the receive buffer, as per
1.0 API specification. Thanks @drmpf
[core]
* Fixed wrong timings for HardwareSerial::flush() in SAM core. Thanks @borisff
* Stream: Optional lookahead and skipChar options added to parseInt and parseFlo
at,
parseFloat also support parsing floats without a leading 0,
Stream::find(char) added to SAM. Thanks @Chris--A.
* Leonardo/Micro (and other atmega32u4 based boards) now have SerialUSB alias fo
r Serial
* Leonardo now has LED_BUILTIN_RX/TX definitions in variant file. Thanks @NicoHo
od
ARDUINO 1.6.6 - 2015.11.03
[ide]
* Switched to Java 8, which is now both bundled and needed for compiling the IDE
* Added link to unofficial boards support list in preferences
* Limit of possible new sketches in a day raised to 676. Thanks @Chris--A
* Windows: fixed a bug when running username had non ASCII chars
* Lots of fixes
* ArduinoISP examples moved under 11.ArduinoISP folder
* MacOSX: binary is now able to tell the IDE its current working directory. Ease
s life to those using the IDE from the CLI
* CLI: if specified board doesn't exist, fail instead of using a default one
* Windows: IDE stores its stuff under %LOCALAPPDATA% instead of %APPDATA% (which
was a roaming folder). %APPDATA% content is automatically migrated to new locat
ion
* Added 74880 baud rate to serial monitor. Thanks @Chris--A
* When changing tab, file name is shown in window title
* IDE groups compiled files into "libraries", "core" and "sketch" folders
* Added Serial Plotter. Thanks @henningpohl
* Editor: triple click selects whole line
* Windows: IDE startup feels faster
* Examples of libraries with a .development flag file in their root folder won't
get marked as read-only. See #2619
* Update notifications: when updates are available from either Library or Boards
Managers, a popup will be shown
* Introducing arduino-builder, a command line tool that properly calls gcc. Fixe
s lots of issues about buggy preprocessing.
* Each open sketch gets built in its own folder, allowing the IDE to recycle pre
vious compilations and being much faster
* "Go to line": CTRL+L or Edit > Go to line... will open a dialog where you can
type the line number where you want the editor to jump to
* Added boards.local.txt support: like platform.local.txt, allows to enrich a bo
ards.txt definition without modifying the original file. Thanks @Wackerbarth
* Library to library dependencies: when your sketch imports a library, and that
library uses another, the IDE will find out without you having to add a useless
#include to your sketch
* Allow per-platform keywords.txt. Thanks @PaulStoffregen
* Allow spaces in IDE install path on Linux. Thanks @matthijskooijman
* Fixed a lot of documentation. Thanks to @per1234 @q2dg
* Fixed parsing for SystemProfiler when scanning for available serial ports on M
acosx El Capitan
[libraries]
* Bridge: YunClient.connected() returns true if there are bytes available for re
ad. Thanks @RobAtticus
* Bridge: YunClient.stop() now empties all buffers. Thanks @RobAtticus
* Ethernet: Added missing keywords. Thanks @per1234
* Ethernet: Fixed DNSClient.inet_aton() function. Thanks @jhorck
* Ethernet: Expose optional DHCP timout parameters to Ethernet:begin(). Thanks @
chaveiro
* Wire: Implemented Wire.end().
* Wire: Fixed bug with repeated START for AVR. Thanks Nate Williams
* Wire: Resolved timing issues on AVR. See #2173 #1477.
* Wire: Fixed bug in repeated start in slave mode on SAM. See #3908
* SD: Change "char *" to "const char *" on methods accepting a string as a param
eter. Thanks @Ivan-Perez
* Scheduler: Added support for cortex-M0. Thanks @PeterVH
[core]
* Added new PluggableUSB and HID support. This change introduces a more powerful
API for
libraries that wants use advanced features of USB-Device.
Thanks to @obra @NicoHood @matthijskooijman @nospam2000 @weizenspreu
* AVR: fixed wrong turnOffPWM() for TIMER0B. Thanks @gonzoveliki
* AVR: added support for AtmegaXXu2. Thanks @NicoHood
* AVR: a bunch of USB Core bug fix. Thanks @NicoHood
* AVR: Expose serial setting from USB-CDC serial port. Thanks @matthijskooijman
* ArduinoISP is now compatible with every architecture (not only AVR) and is muc
h more stable. Thanks @PeterVH
* Print not aborting on write() failure. Thanks @stickbreaker
* AVR: Faster interrupts patch. Thanks @xxxajk
* AVR: Fixed pulseInLong wrong measurements.
* AVR: Removed a bunch of compiler warnings. Thanks @NicoHood
* Improved variants files for Boards Gemma and Ethernet
* Windows: opening a lonely sketch caused the IDE to crash. Fixed with a bounty
on bountysource @gerito1
* Bridge: fixed bug with multiple and failing YunClient.connect calls @sngl
* Translations updated
* Improved SoftSerial library and optimized its memory usage @matthijskooijman
* Fixed: status board was not changing when using custom menu @PaulStoffregen
* Fixed: better error message when using a busy serial device
* Fixed: missing bool operator on EthernetClient
* Fixed: missing bool operator on SoftSerial
* MacOSX: back to native file dialogs and buttons, when using experimental versi
on
* MacOSX: command line interface now works also with java-latest version
* Improved library name matching @PaulStoffregen. Avoids conflicts with librarie
s that bundle files equally named
ARDUINO 1.6.0 - 2015.02.09
[ide]
* Updated help with the latest docs
* Updated translations
ARDUINO 1.6.0rc3 - 2015.02.03
[ide]
* Bunch of bugfix on MacOSX build (https://github.com/arduino/Arduino/pull/2590)
ARDUINO 1.6.0rc2 - 2015.01.20
[ide]
* Reenabled speed of 38400 on serial monitor
* Improved Find/Replace dialog layout (Eberhard Fahle)
* Fixed missing .dll error on some Windows box
[core]
* Arduino "boolean" type is now mapped to "bool" instead of "uint8_t" (Christoph
er Andrews)
* sam: HardwareSerial now has buffered transmission (Collin Kidder)
* sam: HardwareSerial fixed modes (parity, data bits, stop bits) (bluesign2k)
* avr: Fixed regression in pulseIn() function accuracy
[libraries]
* GSM: minor changes and bug fix (https://github.com/arduino/Arduino/pull/2546)
The following changes are included also in the Arduino IDE 1.0.7:
[ide]
* Mitigated Serial Monitor resource exhaustion when the connected device sends a
lot of data (Paul Stoffregen)
ARDUINO 1.6.0rc1 - 2014.12.11
* IDE internals have been refactored and sorted out. (Claudio Indellicati)
https://github.com/arduino/Arduino/pull/2328
The builder and the GUI now have clearly separated source code making it easie
r
for IDE developers to maintain and propose patch.
From a user point of view nothing changes and the IDE should behave exactly as
before.
[ide]
*
*
*
*
*
*
d)
[core]
* sam: added -MMD flag to let gcc produce dependency files (full rebuild on Ardu
ino Due is now triggered only if needed)
[libraries]
* LiquidCrystal: added setRowOffsets function to support different LCD hardware
configurations (Mark Sproul)
* LiquidCrystal: various improvements and optimizations (Matthijs Kooijman)
* Fixed PROGMEM error in Robot_Control/examples/explore/R06_Wheel_Calibration
* SD: Fixed SPI transaction mismatch (Paul Stoffregen)
The following changes are included also in the Arduino IDE 1.0.7:
[libraries]
* EthernetClien: use IANA recommended ephemeral port range, 49152-65535 (Jack Ch
ristensen, cifer-lee)
[core]
* Fixed regression in HardwareSerial::available() introduced with https://github
.com/arduino/Arduino/pull/2057
ARDUINO 1.5.8 BETA - 2014.10.01
[ide]
* Find/Replace over multiple tabs (Erwin Ried, Fulvio Ieva)
* Fix wrong "Replace" behavior with empty "Find" field (Fulvio Ieva)
* A lot of command-line improvements (Matthijs Kooijman)
* Cursor is not moved when invoking autoformat
[libraries]
* SPI: added transaction API (Paul Stoffregen)
https://github.com/arduino/Arduino/pull/2223
https://groups.google.com/a/arduino.cc/forum/#!msg/developers/TuZLfjeZjDI/6deN
jw3Y9m4J
* FileIO bridge: fixed wrong return value in File::size() for size >32768
* Updated Temboo to latest version
* Updates/Fix to various examples
[core]
* sam: "new" and "delete" do not bring in 50Kb of stdclib anymore
* Correct implementation of gcc specific internal functions (__cxa_guard_*) (Ale
xey Guseynov)
* Fix for upload problems on Leonardo (and derivative boards based on mega32u4)
* Small improvements on String class (Matthijs Kooijman)
* Fixed size of available flash for mega2560 boards (Leonardo Milani, Arnav Gupt
a)
* sam: removed useless empty digitalPinToTimer(..) macro stub (Bill Perry)
The following changes are included also in the Arduino IDE 1.0.6:
[core]
* avr: Added replacement stub for cstdlib atexit() funciton (Christopher Andrews
)
ARDUINO 1.5.7 BETA - 2014.07.07
[core]
* Upgraded AVR toolchain: gcc 4.8.1, avr-libc 1.8.0
* Upgraded ARM toolchain: gcc 4.8.3-2014q1
* Upgraded avrdude to version 6.0.1
* ARM gcc doesn't require ia32-libs anymore on 64 bits linux systems
* avr: fixed typo in SerialEvent3 handling (Matthijs Kooijman)
* avr: HardwareSerial support for different size of TX and RX buffer sizes (Jan
Baeyens)
* avr: HardwareSerial support for buffer sizes bigger than 256 bytes (Jan Baeyen
s)
* sam: Added configuration (parity, data bits, stop bits) to Serial1/2/3 of Ardu
ino Due (bluesign2k)
* Removed a lot of compiler warnings from Arduino core
* avr: Fix EXTERNAL_NUM_INTERRUPTS for atmega128rfa1 and atmega256rfr2 (Matthijs
Kooijman)
* sam: Fix to Wire::endTransmisson() return value (bluesign2k)
* sam: Fix to Wire usage of TWI status register (bluesign2k)
* avr: Fixed PROGMEM statements to be compatible with newer avr gcc (Scott Howar
d)
[ide]
* Moved to appbundler for building releases for MacOSX. (Haavar Valeur)
This should remove dependency from Java 1.6 on recent MacOSX.
* Added support for '-' and '.' in filenames (Georg von Zengen)
* (re)Added 'arduino_debug.exe' in Windows build for debugging purposes
* Magic baudrate is no longer removed (it was a workaround for RXTX)
(for more info see github issues: #1203 and #995)
* Allow overriding platform.txt using platform.local.txt (Matthijs Kooijman)
* Explicitly define compiler.path in avr/platform.txt (Matthijs Kooijman)
* Make the low available memory message a warning (Matt Robinson)
* Proceed with upload even if port can't be found (David Mellis)
* Added support for ArduinoISP
* Windows: added board detection on serial port menu
[libraries]
* Updated SpaceBrew library
* Fixed HttpClient::running() function
* Fixed HttpClient::ready() function (Manuel Rabade)
* Added HttpClient::noCheckSSL() method
* Improved speed of YunSerialTerminal
* Fixed CRC of shutdown command on YunSerialTerminal example
* Updates/Fix to various examples
* Added Wire.setClock(..) method (Kristian Sloth Lauszus)
The following changes are included also in the Arduino IDE 1.0.6:
[core]
* avr: Improved USB-CDC write speed (Justin Rajewski)
* avr: Improved USB-CDC read code (Paul Brook)
* avr: Fixed race condition in USB-CDC transmit (Paul Brook)
* Fixed wrong NULL pointer handling in Stream class (Amulya Kumar Sahoo)
* Added initVariant() hook to allow 3rd party variant-specific initialization
[ide]
* Fix toolchain command line to compile assembler files (Jimmy Hedman)
* If two libraries have the same header file use the lib with the same folder na
me (Paul Stoffregen)
[libraries]
* Robot_Control: removed duplicated SPI and Wire (Xun Yang)
* Robot_Control: fixed issue on motors being opposite (Xun Yang)
* Robot_Control: updated turning algorithm (Xun Yang)
* Esplora: added reading form Tinkerkit inputs
* SoftwareSerial: Fix idle level when initializing with inverted logic (Jens-Chr
istian Skibakk)
[firmware]
* Wifishield: fixed paths on firmware upgrade scripts
ARDUINO 1.5.6-r2 BETA - 2014.02.21
[ide]
* JSSC: Fixed NPE when RXCHAR event with no bytes (Jos Pereda)
ARDUINO 1.5.6 BETA - 2014.02.20
[ide]
* Implemented 1.5 library specification Rev.2
(https://github.com/arduino/Arduino/wiki/Arduino-IDE-1.5:-Library-specificatio
n)
* Replaced RXTX library with JSSC (Alexey Sokolov)
http://code.google.com/p/java-simple-serial-connector/
* If two libraries provides the same .h file prioritize the library with tha sam
e folder name
* Improved command-line parsing (Matthijs Kooijman)
* Windows: added arduino_debug.exe to help debugging errors when launch4j fails
to start IDE
[libraries]
* TFT: warning messages in PImage class and strings inside examples now stored i
n flash to save RAM.
* Ethernet: added operator == for EthernetClient class (Norbert Truchsess)
* Robot_Control: removed embedded copies of Wire and SPI to allow their use in s
ketch.
Old sketches using Robot_Control now must include Wire.h and SPI.h.
* Robot_Control: fixed issues about motor turning algorithm
* Bridge: optimized FileIO.doBuffer() (bobh66)
[core]
* avr: Pile of HardwareSerial improvements (Matthijs Kooijman)
- Remove duplicate code from HardwareSerial::begin() methods
- Simplify HardwareSerial::begin() (Rob Tillaart)
- Use constants for register bit positions in HardwareSerial
- Fix HardwareSerial::flush() when interrupts are kept disabled for a while
- Fix lockup when writing to HardwareSerial with interrupts disabled
- Disable the UDRE interrupt sooner in HardwareSerial (Nathan Blackwell)
- Put each HardwareSerial instance in its own .cpp file in order to save memor
y
for unused UARTS
- In HardwareSerial::write, bypass the queue when it's empty in order to
improve throughput when using high baudrates (KurtE)
* sam: Fixed wrap-around bug in delay() (Mark Tillotson)
* sam: Fixed regression in analogRead() (fails to read multiple channels) (Mark
Tillotson)
* sam: Fixed loops in Reset.cpp (Matthijs Kooijman)
* Bridge: Fixed return value of Bridge::get(..) (returning 0 with valid data len
>0)
* Bridge: Implemented multi-byte File::read(..)
* sam: Fixed SPI initialization (when using extended API and multiple CS)
* Partially fixed the behavior of EthernetClient::flush(), now it doesn't discar
d
incoming data BUT it doesn't wait for outgoing data to be successfully transmi
tted.
* Esplora: Added support for display GREENTAB_L
[core]
* sam: Fixed wrong initialization for ADC timings (analogRead speed Arduino DUE
improved by a factor x10)
https://github.com/arduino/Arduino/issues/1418
(http://www.djerickson.com/arduino/)
* avr: Fixed wrong extended fuses on Arduino Yn when using external programmer
* Added LED_BUILTIN metadata in variant files
* avr: Refactored Mega* variants definitions in boards.txt (Kristian Sloth Lausz
us)
* avr: Removed File object destructor. In order to free memory allocated by a Fi
le object the safest way is to call its close() method
* Added digitalPinToInterrupt variant macro (Paul Stoffregen)
* avr: added variant file for Arduino Ethernet
* Added SERIAL_* metadata in variants files (Paul Stoffregen)
ARDUINO 1.5.4 BETA - 2013.09.10
[ide]
* Revert to English locale if the system default is not available
* Added support for Arduino Yn
* Autodetect of boards connected to each serial port
* Network upload and discovery for Arduino Yn
[libraries]
* sam: fixed wrong SPI initialization (noblepepper)
* updated all instances of Adafruit_GFX to the latest version
* added libraries for Arduino Yn
[core]
* avr: fixed bug introduced with recent optimizations in HardwareSerial (atmega8
cpu) (darryl)
ARDUINO 1.5.3 BETA - 2013.08.30
[ide]
* Removed useless baud rates from serial monitor
* Fixed some minor IDE UI bugs (Shigeru Kanemoto)
* Added support for new 1.5 Library format (https://github.com/arduino/Arduino/w
iki/Arduino-IDE-1.5:-Library-specification)
* Pass board type from boards.txt (https://github.com/arduino/Arduino/issues/308
)
* Display estimated RAM usage after compile (Loren M. Lang)
* Import library menu is now scrollable
* Scrollable menus can now be scrolled with the mouse wheel
[arduino core]
* sam: Fixed delayMicrosecond() when interrupts are disabled (Paul Stoffregen)
* sam: Upgraded libsam, and added missing modules (CAN, ETH, etc.) (Thibaut Viar
d)
* sam: Added compatibility for avr/pgmspace.h (Paul Stoffregen)
[other]
* Merged all improvements made in Arduino IDE 1.0.3
* Merged all improvements made in Arduino IDE 1.0.4
ARDUINO 1.5.1r2 BETA - 2012.11.06
* Fixed wrong release file for windows.
ARDUINO 1.5.1 BETA - 2012.11.05
* Merged changes coming from stable release of Arduino IDE 1.0.2.
[arduino core]
* added support for yield() function in Arduino Core. This is a
preliminar step for experimenting with cooperative Schedulers.
[ide]
* Simplified boards menu selection. (new boards.txt file format with
custom sub-menus).
* Fixed "FAT" (multi-platform) library detection. This bug caused
many libraries to be detected as 'invalid'.
[sam arduino core]
* attachInterrupt() and detachInterrupt() are now working.
* Fixed macros to query low level GPIO registers:
digitalPinToBitMask(), digitalPinToTimer(),
portOutputRegister, portInputRegister()
* Fixed analogWrite() on DAC0/1 when writing on both DACs
(thanks to smay4finger)
[firmwares]
* Added firmware for atmega16u2 on Due Board.
ARDUINO 1.5 BETA - 2012.10.22
* First release for the unified IDE for both AVR 8-bit and ARM 32-bit
(SAM3 CPUs) architectures.
* This release include the SAM Arduino Core used in the Arduino Due
Board.
* Everything is in beta, most features or libraries are still missing
or incomplete.
* For more info refer to this press release:
http://www.arduino.cc/blog/2012/10/22/arduino-1-5-support-for-the-due-and-othe
r-processors-easier-library-installation-simplified-board-menu-etc/
ARDUINO 1.0.7
[libraries]
* Backported SPI Transaction API from IDE 1.5.x (Paul Stoffregen)
* Backported GSM from IDE 1.5.x: fix build regression
* Backported Ethernet from IDE 1.5.x
* Backported SD from IDE 1.5.x
* Backported SPI from IDE 1.5.x
* EthernetClient: use IANA recommended ephemeral port range, 49152-65535 (Jack C
hristensen, cifer-lee)
[core]
* Fixed missing NOT_AN_INTERRUPT constant in digitalPinToInterrupt() macro
* Fixed performance regression in HardwareSerial::available() introduced with ht
tps://github.com/arduino/Arduino/pull/2057
[ide]
* Mitigated Serial Monitor resource exhaustion when the connected device sends a
lot of data (Paul Stoffregen)
ARDUINO 1.0.6 - 2014.09.16
[core]
* avr: Improved USB-CDC write speed (Justin Rajewski)
* avr: Improved USB-CDC read code (Paul Brook)
* avr: Fixed race condition in USB-CDC transmit (Paul Brook)
* avr: Added replacement stub for cstdlib atexit() funciton (Christopher Andrews
)
* Fixed wrong NULL pointer handling in Stream class (Amulya Kumar Sahoo)
* Backported String class from IDE 1.5.x (Matt Jenkins)
* Backported Print class from IDE 1.5.x
* Backported digitalPinToInterrupt macro from IDE 1.5.x
* Added initVariant() hook to allow 3rd party variant-specific initialization
* Added replacement stub for cstdlib atexit() function (Christopher Andrews)
[ide]
* Added compatibility for IDE 1.5.x libraries layout
* Fix toolchain command line to compile assembler files (Jimmy Hedman)
* If two libraries have the same header file use the lib with the same folder na
me (Paul Stoffregen)
[libraries]
* Robot_Control: removed duplicated SPI and Wire (Xun Yang)
* Robot_Control: fixed issue on motors being opposite (Xun Yang)
* Robot_Control: updated turning algorithm (Xun Yang)
* Esplora: added reading form Tinkerkit inputs
* SoftwareSerial: Fix idle level when initializing with inverted logic (Jens-Chr
istian Skibakk)
* fixed a bunch of examples
[firmware]
* Wifishield: fixed paths on firmware upgrade scripts
ARDUINO 1.0.5-r2 - 2014.01.08
* Signed drivers for Windows 8.1
* Fixed Windows drivers signature (that prevented installation on
some Windows 8.x OS). Now the signature is timestamped and should
not expire.
ARDUINO 1.0.5 - 2013.05.15
[core]
* [avr] malloc bug: backported avr-libc 1.8.0 implementation
* [avr] removed deprecated interrupt handlers causing compiler issues
with newer avr-gcc.
* [avr] added c_str() method to String
* [avr] Stream "_timeout" field and related methods are now protected
[libraries]
* Upgrades to WiFi library
* Fixed a bunch of examples
* Added Arduino Robot libraries
Fixed
Fixed
Fixed
Added
[environment]
*
*
*
*
[bootloaders]
* Fixed a bunch of bugs on Mega2560's bootloader (Mark Sproul)
(https://github.com/arduino/Arduino/pull/1183)
ARDUINO 1.0.3 - 2012.12.10
[hardware]
* Added support for the Arduino Esplora
[environment]
* Signed application for MacOSX 10.8
[core]
* Fixed power-up-starts-bootloader in Leonardo (and derivative)
bootloaders. (Kristian Lauszus)
(https://github.com/arduino/Arduino/pull/118)
* Fixed digital_pin_to_timer_PGM array in Leonardo variant.
* Published updated Wifi firmware
* Updated source code for atmega8 bootloader
[libraries]
* Added 600 baud support in SoftwareSerial (Sbastien Jean)
(http://github.com/arduino/Arduino/issues/1146)
ARDUINO 1.0.2 - 2012.11.05
[hardware]
* Added support for the Arduino Micro.
* Added support for the LilyPad Arduino USB.
* For Arduino Mega, having avrdude use "wiring" not "stk500v2" for
uploads (to improve auto-reset behavior).
http://code.google.com/p/arduino/issues/detail?id=806
[environment]
* Find-In-Reference now works whether or not text is selected.
http://code.google.com/p/arduino/issues/detail?id=940
* Not generating prototypes for functions that already have them.
(Lars J. Nielsen).
http://code.google.com/p/arduino/issues/detail?id=973
* Improved line numbers for error messages. (Paul Stoffregen)
http://code.google.com/p/arduino/issues/detail?id=907
* Automatically create libraries folder in the sketchbook.
(Paul Stoffregen)
http://code.google.com/p/arduino/issues/detail?id=986
* Tutorial on installing libraries (linked from readme.txt in the
libraries folder). (Limor Fried)
* Fix to allow selection of Norwegian. (Rune Fauske)
* Fix to race condition / occasional error in compilation. (gandrewstone)
http://code.google.com/p/arduino/issues/detail?id=950
* Don't break long C++ comments during auto-format.
http://code.google.com/p/arduino/issues/detail?id=255
[core / libraries]
* Included WiFi library and wifi shield firmware.
* Added ability to specify serial configuration (data bits, stop bits
and parity check) in Serial.begin(). (Alarus)
http://code.google.com/p/arduino/issues/detail?id=770
* Avoided overruns of the incoming serial (CDC) buffer on the Leonardo.
(Peter Van Hoyweghen)
* Avoided auto-reset of the Leonardo when opening serial port after
upload without specifying a baud rate. (Peter Van Hoyweghen)
* Fix for tone() on the Leonardo. (Shigeru Kanemoto)
http://code.google.com/p/arduino/issues/detail?id=960
http://code.google.com/p/arduino/issues/detail?id=52
* Improvements to the Find / Replace dialog. (Peter Lewis)
http://code.google.com/p/arduino/issues/detail?id=825
* Support for selecting words (on double-click) and lines (triple-click)
in the Arduino software. (Peter Lewis)
http://code.google.com/p/arduino/issues/detail?id=824
* Don't insert newline when using serial monitor keyboard
shortcut. (Lars J. Nielsen)
http://code.google.com/p/arduino/issues/detail?id=279
* Added a preference for disabling verification on upload (for increased
speed). (Nathan Seidle)
http://code.google.com/p/arduino/issues/detail?id=842
* Added the gcc toolchain to the Linux distribution. (To use the
toolchain already installed on your system, simply delete the one
that comes with the Arduino software.) (Paul Stoffregen)
http://code.google.com/p/arduino/issues/detail?id=300
* Updating Arduino Mini upload protocol to 'arduino' from 'stk500' (should
fix problems with auto-reset not working).
[core / libraries]
* Updated (and official) support for the Arduino Leonardo (ATmega32U4).
Includes new bootloader and various fixes to the core.
* Adding overloads to Wire.write() (for Wire.write(0)). (Paul Stoffregen)
http://code.google.com/p/arduino/issues/detail?id=527
* Fixing delayMicroseconds() for 20 MHz clocks (Erdem U. Altinyurt)
http://code.google.com/p/arduino/issues/detail?id=306
* Support third external interrupt on ATmega1284P. (maniacbug)
http://code.google.com/p/arduino/issues/detail?id=728
* Update reference voltage constants for ATmega1284P. (maniacbug)
http://code.google.com/p/arduino/issues/detail?id=728
* Adding --relax linker flag for ATmega2560. (arducopter)
http://code.google.com/p/arduino/issues/detail?id=729
* Fixing Ethernet library bug on avr-gcc 4.5.1 (SurferTim)
http://code.google.com/p/arduino/issues/detail?id=605
* Fixed DHCP hostname generation. (peter)
* Simplifying microseconds to clock cycles conversions (Rob Tillaart)
http://code.google.com/p/arduino/issues/detail?id=675
* Fixed various warnings. (maniacbug)
http://code.google.com/p/arduino/issues/detail?id=688
* Fixed bug w/ repeated initial characters in findUntil(). (Jeffery.zksun)
http://code.google.com/p/arduino/issues/detail?id=768
* Added INPUT_PULLUP option for pinMode(). The INPUT mode now explicitly
s a new color scheme and about image for the IDE (by ToDo.to.it).
* The name of the currently selected board and serial port are now shown
at the bottom of the editor. (Code from Wiring.)
* A progress bar is displayed during compilation and upload. (from Wiring.)
[core / libraries]
* Serial transmission is now asynchronous - that is, calls to
Serial.print(), etc. add data to an outgoing buffer which is transmitted
in the background. Also, the Serial.flush() command has been repurposed
Added support for the Arduino Uno and Arduino Mega 2560.
Including ATmega8U2 firmware used by Uno and Mega 2560.
Including source code to optiboot bootloader used by the Uno.
Including source code to the stk500v2 bootloader used by Mega 2560.
New application icon (by ToDo).
[environment]
* Synchronized with the Processing 1.0.9 code base, bringing various fixes,
including to a bug causing saving to fail when closing the last sketch.
* Added support for third-party hardware in the SKETCHBOOK/hardware folder,
mirroring the current structure of the hardware folder in Arduino.
* Added Ctrl-Shift-M / Command-Shift-M shortcut for serial monitor.
* Hold down shift when pressing the Verify / Compile or Upload toolbar
buttons to generate verbose output (including command lines).
* Moving build (on upload) from the applet/ sub-folder of the sketch
to a temporary directory (fixing problems with uploading examples from
within the Mac OS X disk image or a Linux application directory).
* Fixed bug the prevented the inclusion of .cpp and .h (or .c and .h) files
of the same name in a sketch.
* Improved the Mac OS X disk image (.dmg): added a shortcut to the
Applications folder, a background image with arrow, and new FTDI drivers.
ARDUINO 0017 - 2009.07.25
[documentation / examples]
* Many new and revised examples from Tom Igoe.
[core / libraries]
* Updated LiquidCrystal library by Limor Fried. See reference for details.
* Updated Firmata library to version 2.1 (rev. 25).
* Replaced the Servo library with one (MegaServo) by Michael Margolis.
Supports up to 12 servos on most Arduino boards and 48 on the Mega.
* Improving the accuracy of the baud rate calculations for serial
communication (fixing double-speed problems on 8 MHz Arduino boards).
Thanks to gabebear.
[environment]
* Synchronized with the Processing 1.0.3 code base (rev. 5503), bringing
many improvements (listed below).
* New icons and about image by Thomas Glaser (envis precisely).
* Support for multiple sketch windows.
* The serial monitor now has its own window.
* Comment / Uncomment menu item (in Edit) and keyboard shortcut.
* Increase and Decrease Indent menu items (in Edit) and keyboard shortcuts.
* Support for third-party libraries in the SKETCHBOOK/libraries folder.
* Libraries are now compiled with the sketch, eliminating the delay when
switching boards and the need to delete .o files when changing library
source code.
* Arduino now comes as an app file (in a dmg) on the Mac.
* Adding the Arduino Nano w/ ATmega328 to the Tools > Board menu.
ARDUINO 0016 - 2009.05.30
[documentation / examples]
* New communication examples (w/ corresponding Processing and Max/MSP code) by
Tom Igoe.
[core / libraries]
* Adding support for the Arduino Pro and Pro Mini 3.3V / 8 MHz w/ ATmega328.
* Adding support for the LilyPad Arduino w/ ATmega328.
* Adding write(str) and write(buf, size) methods to Print, Serial, and the
Ethernet library Client and Server classes. This allows for more efficient
(fewer packet) Ethernet communication. (Thanks to mikalhart.)
* Improvements to the way the Ethernet library Client class connects and
disconnects. Should reduce or eliminate failed connections and long
timeouts. (Thanks to Bruce Luckcuck.)
* Optimizing the timer0 overflow interrupt handler (used for millis() and
micros()). Thanks to westfw and mikalhart.
* Fixing bug that limited the bit() macro to 15 bits. Thanks to Paul Badger.
* Adding ARDUINO version constant (thanks to prodding from mikalhart).
[environment]
* Ordering the items in the Tools > Board menu.
* Adding "Copy as HTML" command to the Tools menu.
* Eliminating (maybe) the occasional "Couldn't determine program size" errors.
Thanks to the Clever Monkey.
* Moving selection of Linux look-and-feel into the arduino script so it can
be changed by users. Thanks to Eberhard Fahle.
[tools]
* Adding automatic dependency generation to the Makefile. (Lars Immisch)
ARDUINO 0015 - 2009.03.26
[core / libraries]
* Adding support for the Arduino Mega (ATmega1280).
[environment]
* Reinstating use of core.a library in the build process, slightly shrinking
compiled sketch sizes. (Thanks to William Westfield.)
* Fixing bug in copy for forum (thanks to eried).
ARDUINO 0014 - 2009.03.07
[core / libraries]
* Fixing bug that prevented multiple outgoing Client connections with the
ethernet library.
[environment]
* Clarifying ATmega168 vs. ATmega328 in the Tools > Boards menu.
[tools]
* Updating the Mac OS X AVR tools to AVR MacPack 20081213. This includes
avr-gcc 4.3.2, which should fix problems with functions called from
within interrupts.
ARDUINO 0013 - 2009.02.06
[documentation / examples]
* Adding examples for Parallax Ping Sensor and Memsic 2125 accelerometer.
[core / libraries]
* Adding support for the ATmega328. The upload speed is 57600 baud, so you
may need to edit boards.txt or reburn your bootloader if you bought an
ATmega328 w/ bootloader from adafruit or other supplier.
* Adding support for printing floats to Print class (meaning that it works
in the Serial, Ethernet, and LiquidCrystal classes too). Includes two
decimal places.
* Added word, word(), bitRead(), bitWrite(), bitSet(), bitClear(), bit(),
lowByte(), and highByte(); see reference for details.
* Working around problem that caused PWM output on pins 5 and 6 to never go
to 0 (causing, for example, an LED to continue to glow faintly).
* Removing cast macros, since function-style casts are a feature of C++. This
should fix contributed libraries that broke in Arduino 0012.
* Modifying pulseIn() to wait for a transition to start timing (i.e. ignoring
any pulse that had already started when the function was called).
* Fixing bug in random() that limited the ranges of values generated. Thanks
to Mikal Hart.
* Modifying delay() to pause for at least the given number of milliseconds.
* Fixing bug in Ethernet library that interfered with use of pins 8 and 9.
* Originating each outgoing network connection from a different port (in the
Client class of the Ethernet library). Thanks to Paul and joquer.
* Updating ATmega168 bootloader to work with standard distributions of avrdude
(responding to signature requests made with the universal SPI command) and
correctly store EEPROM data. Thanks to ladyada.
[environment]
* Omitting unused functions from compiled sketches, reducing their size.
* Changing compilation process to allow for use of EEMEM directive (although
not yet uploading EEPROM data).
ARDUINO 0012 - 2008.09.18
* Added Arduino Nano to the boards menu.
* Arduino Pro or Pro Mini (8 MHz) to the boards menu.
* Added Firmata library by Hans Steiner and others. This provides a standard
protocol for communicating with software on the computer.
* Added an Ethernet library for use with the Arduino Ethernet Shield.
* Added a Servo library based on the work of Jim Studt.
* Added a LiquidCrystal library based on the work in the playground. It
supports both 4- and 8-bit modes.
* Improved millis(): it now overflows after 49 days instead of 9 hours, but
now uses slightly more processing power.
* Fixed reversing direction bug in Stepper library. (Thanks to Wayne Holder.)
* Moved insertion of #include <WProgram.h> to after any comments and #include
statements in the main sketch file. This means that an #include <stdlib.h>
now works.
* Upgraded to newer versions of avr-gcc (4.3.0) and avr-libc (1.6). This
provides support for newer Atmel chips, but may increase the size
of sketches.
* Allowing per-board specification of the upload.using preference, allowing
upload via bootloader to some boards and via a programmer to others.
* Added return values to some functions in the Wire library to allow for
better error handling.
* Fixed random() to work with long values.
* Creation of an abstract Print base-class to allow Serial, SoftwareSerial,
and LiquidCrystal to share code for print() and println().
* Incorporated ladyada's watchdog timer mods to the bootloader source, but
only compiling them in for the Pro and Pro Mini (because they are included
in the bootloader being burned on the boards by SparkFun).
ARDUINO 0011 - 2008.03.28
*
*
*
*
*
*
*
*
*
*
*
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.
ARDUINO 0002 - 2005.10.05
*
*
*
*
*
*
*