mirror of
https://github.com/esp8266/Arduino.git
synced 2025-07-30 16:24:09 +03:00
Update revision log. Upped version to 1.5.6
This commit is contained in:
@ -61,9 +61,9 @@ import static processing.app.I18n._;
|
|||||||
* files and images, etc) that comes from that.
|
* files and images, etc) that comes from that.
|
||||||
*/
|
*/
|
||||||
public class Base {
|
public class Base {
|
||||||
public static final int REVISION = 155;
|
public static final int REVISION = 156;
|
||||||
/** This might be replaced by main() if there's a lib/version.txt file. */
|
/** This might be replaced by main() if there's a lib/version.txt file. */
|
||||||
static String VERSION_NAME = "0155";
|
static String VERSION_NAME = "0156";
|
||||||
/** Set true if this a proper release rather than a numbered revision. */
|
/** Set true if this a proper release rather than a numbered revision. */
|
||||||
static public boolean RELEASE = false;
|
static public boolean RELEASE = false;
|
||||||
|
|
||||||
|
@ -1,16 +1,21 @@
|
|||||||
|
|
||||||
ARDUINO 1.5.6 BETA
|
ARDUINO 1.5.6 BETA 2014.02.19
|
||||||
|
|
||||||
[ide]
|
[ide]
|
||||||
* Implemented 1.5 library specification Rev.2
|
* Implemented 1.5 library specification Rev.2
|
||||||
(https://github.com/arduino/Arduino/wiki/Arduino-IDE-1.5:-Library-specification)
|
(https://github.com/arduino/Arduino/wiki/Arduino-IDE-1.5:-Library-specification)
|
||||||
* Replaced RXTX library with JSSC (Alexey Sokolov)
|
* Replaced RXTX library with JSSC (Alexey Sokolov)
|
||||||
http://code.google.com/p/java-simple-serial-connector/
|
http://code.google.com/p/java-simple-serial-connector/
|
||||||
|
* If two libraries provides the same .h file prioritize the library with tha same folder name
|
||||||
* Improved command-line parsing (Matthijs Kooijman)
|
* Improved command-line parsing (Matthijs Kooijman)
|
||||||
|
|
||||||
[libraries]
|
[libraries]
|
||||||
* TFT: warning messages in PImage class and strings inside examples now stored in flash to save RAM.
|
* TFT: warning messages in PImage class and strings inside examples now stored in flash to save RAM.
|
||||||
* Ethernet: added operator == for EthernetClient class (Norbert Truchsess)
|
* Ethernet: added operator == for EthernetClient class (Norbert Truchsess)
|
||||||
|
* Robot_Control: removed embedded copies of Wire and SPI to allow their use in sketch.
|
||||||
|
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]
|
[core]
|
||||||
* avr: Pile of HardwareSerial improvements (Matthijs Kooijman)
|
* avr: Pile of HardwareSerial improvements (Matthijs Kooijman)
|
||||||
@ -28,9 +33,11 @@ ARDUINO 1.5.6 BETA
|
|||||||
* sam: Fixed regression in analogRead() (fails to read multiple channels) (Mark Tillotson)
|
* sam: Fixed regression in analogRead() (fails to read multiple channels) (Mark Tillotson)
|
||||||
* sam: Fixed loops in Reset.cpp (Matthijs Kooijman)
|
* sam: Fixed loops in Reset.cpp (Matthijs Kooijman)
|
||||||
* sam: Optimized delayMicroseconds() (Rob Tillaart) #1121
|
* sam: Optimized delayMicroseconds() (Rob Tillaart) #1121
|
||||||
|
* sam: added itoa() and related functions
|
||||||
* Optimized Print::print(String&) method, now uses internal string buffer to perform block write
|
* Optimized Print::print(String&) method, now uses internal string buffer to perform block write
|
||||||
* Improved portability of String class (maniacbug) #695
|
* Improved portability of String class (maniacbug) #695
|
||||||
* Make some operators in IPAddress const (Matthijs Kooijman)
|
* Make some operators in IPAddress const (Matthijs Kooijman)
|
||||||
|
* Fix for compiling assembler files with newer gcc
|
||||||
|
|
||||||
ARDUINO 1.5.5-r2 BETA 2014.01.10
|
ARDUINO 1.5.5-r2 BETA 2014.01.10
|
||||||
|
|
||||||
|
@ -6,7 +6,7 @@
|
|||||||
# https://github.com/arduino/Arduino/wiki/Arduino-IDE-1.5---3rd-party-Hardware-specification
|
# https://github.com/arduino/Arduino/wiki/Arduino-IDE-1.5---3rd-party-Hardware-specification
|
||||||
|
|
||||||
name=Arduino AVR Boards
|
name=Arduino AVR Boards
|
||||||
version=1.5.5
|
version=1.5.6
|
||||||
|
|
||||||
# AVR compile variables
|
# AVR compile variables
|
||||||
# ---------------------
|
# ---------------------
|
||||||
|
@ -5,7 +5,7 @@
|
|||||||
# https://github.com/arduino/Arduino/wiki/Arduino-IDE-1.5---3rd-party-Hardware-specification
|
# https://github.com/arduino/Arduino/wiki/Arduino-IDE-1.5---3rd-party-Hardware-specification
|
||||||
|
|
||||||
name=Arduino ARM (32-bits) Boards
|
name=Arduino ARM (32-bits) Boards
|
||||||
version=1.5.5
|
version=1.5.6
|
||||||
|
|
||||||
# SAM3 compile variables
|
# SAM3 compile variables
|
||||||
# ----------------------
|
# ----------------------
|
||||||
|
Reference in New Issue
Block a user