Skip to content

Commit aac822a

Browse files
bump version to 2.5.3
1 parent 8cdf1b1 commit aac822a

File tree

8 files changed

+33
-15
lines changed

8 files changed

+33
-15
lines changed

Boards.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
Boards.h - Hardware Abstraction Layer for Firmata library
33
Copyright (c) 2006-2008 Hans-Christoph Steiner. All rights reserved.
4-
Copyright (C) 2009-2015 Jeff Hoefs. All rights reserved.
4+
Copyright (C) 2009-2016 Jeff Hoefs. All rights reserved.
55
66
This library is free software; you can redistribute it and/or
77
modify it under the terms of the GNU Lesser General Public
@@ -10,7 +10,7 @@
1010
1111
See file LICENSE.txt for further informations on licensing terms.
1212
13-
Last updated December 19th, 2015
13+
Last updated April 10th, 2016
1414
*/
1515

1616
#ifndef Firmata_Boards_h
@@ -702,7 +702,7 @@ writePort(port, value, bitmask): Write an 8 bit port.
702702
#define PIN_TO_SERVO(p) (p)
703703
#define DEFAULT_PWM_RESOLUTION 10
704704

705-
705+
706706
// anything else
707707
#else
708708
#error "Please edit Boards.h with a hardware abstraction for this board"

Firmata.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
Firmata.cpp - Firmata library v2.5.2 - 2016-2-15
2+
Firmata.cpp - Firmata library v2.5.3 - 2016-06-18
33
Copyright (c) 2006-2008 Hans-Christoph Steiner. All rights reserved.
44
Copyright (C) 2009-2016 Jeff Hoefs. All rights reserved.
55

Firmata.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
Firmata.h - Firmata library v2.5.2 - 2016-2-15
2+
Firmata.h - Firmata library v2.5.3 - 2016-06-18
33
Copyright (c) 2006-2008 Hans-Christoph Steiner. All rights reserved.
44
Copyright (C) 2009-2015 Jeff Hoefs. All rights reserved.
55
@@ -30,7 +30,7 @@
3030
*/
3131
#define FIRMATA_FIRMWARE_MAJOR_VERSION 2
3232
#define FIRMATA_FIRMWARE_MINOR_VERSION 5
33-
#define FIRMATA_FIRMWARE_BUGFIX_VERSION 2
33+
#define FIRMATA_FIRMWARE_BUGFIX_VERSION 3
3434

3535
/* DEPRECATED as of Firmata v2.5.1. As of 2.5.1 there are separate version numbers for
3636
* the protocol version and the firmware version.

extras/revisions.txt

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,21 @@
1+
FIRMATA 2.5.3 - Jun 18, 2016
2+
3+
[core library]
4+
* Added ESP8266 support (Jens B. & Jacob Rosenthal)
5+
* Added host connection callback (Jens B.)
6+
* Added Wi-Fi TCP client (Jens B.)
7+
* Added BLE transport (BLEStream based on BLESerial by Volta Molda)
8+
* Fixed Arduino Galileo and Edison compile issues
9+
10+
[StandardFirmata & variants]
11+
* Added StandardFirmataBLE (for use with Arduino 101)
12+
* Added ability to choose between Wi-Fi TCP client or server (Jens B.)
13+
* Various updates to StandardFirmataWiFi (Jens B.)
14+
* Increased I2C RX data buffer from 32 to 64 bytes (Rick Waldron)
15+
* Removed StandardFirmataEthernetPlus
16+
* Made StandardFirmataEtherent configurable (to optionally add Plus functionality)
17+
* Improved configuration instructions for StandardFirmataEthernet and StandardFirmataWiFi
18+
119
FIRMATA 2.5.2 - Feb 15, 2016
220

321
[core library]

library.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
name=Firmata
2-
version=2.5.2
2+
version=2.5.3
33
author=Firmata Developers
44
maintainer=https://github.com/firmata/arduino
5-
sentence=Enables the communication with computer apps using a standard serial protocol. For all Arduino boards.
5+
sentence=Enables the communication with computer apps using a standard serial protocol. For all Arduino/Genuino boards.
66
paragraph=The Firmata library implements the Firmata protocol for communicating with software on the host computer. This allows you to write custom firmware without having to create your own protocol and objects for the programming environment that you are using.
77
category=Device Control
88
url=https://github.com/firmata/arduino

readme.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ $ git clone git@github.com:firmata/arduino.git ~/Documents/Arduino/libraries/Fir
8888

8989
##Updating Firmata in the Arduino IDE - older versions (<= 1.6.3 or 1.0.x)
9090

91-
Download the latest [release](https://github.com/firmata/arduino/releases/tag/2.5.2) (for Arduino 1.0.x or Arduino 1.5.6 or higher) and replace the existing Firmata folder in your Arduino application. See the instructions below for your platform.
91+
Download the latest [release](https://github.com/firmata/arduino/releases/tag/2.5.3) (for Arduino 1.0.x or Arduino 1.5.6 or higher) and replace the existing Firmata folder in your Arduino application. See the instructions below for your platform.
9292

9393
*Note that Arduino 1.5.0 - 1.5.5 are not supported. Please use Arduino 1.5.6 or higher (or Arduino 1.0.5 or 1.0.6).*
9494

@@ -99,7 +99,7 @@ The Firmata library is contained within the Arduino package.
9999
1. Navigate to the Arduino application
100100
2. Right click on the application icon and select `Show Package Contents`
101101
3. Navigate to: `/Contents/Resources/Java/libraries/` and replace the existing
102-
`Firmata` folder with latest [Firmata release](https://github.com/firmata/arduino/releases/tag/2.5.2) (note there is a different download
102+
`Firmata` folder with latest [Firmata release](https://github.com/firmata/arduino/releases/tag/2.5.3) (note there is a different download
103103
for Arduino 1.0.x vs 1.6.x)
104104
4. Restart the Arduino application and the latest version of Firmata will be available.
105105

@@ -109,7 +109,7 @@ will differ slightly: `Contents/Java/libraries/Firmata` (no Resources directory)
109109
###Windows:
110110

111111
1. Navigate to `c:/Program\ Files/arduino-1.x/libraries/` and replace the existing
112-
`Firmata` folder with the latest [Firmata release](https://github.com/firmata/arduino/releases/tag/2.5.2) (note there is a different download
112+
`Firmata` folder with the latest [Firmata release](https://github.com/firmata/arduino/releases/tag/2.5.3) (note there is a different download
113113
for Arduino 1.0.x vs 1.6.x).
114114
2. Restart the Arduino application and the latest version of Firmata will be available.
115115

@@ -118,7 +118,7 @@ for Arduino 1.0.x vs 1.6.x).
118118
###Linux:
119119

120120
1. Navigate to `~/arduino-1.x/libraries/` and replace the existing
121-
`Firmata` folder with the latest [Firmata release](https://github.com/firmata/arduino/releases/tag/2.5.2) (note there is a different download
121+
`Firmata` folder with the latest [Firmata release](https://github.com/firmata/arduino/releases/tag/2.5.3) (note there is a different download
122122
for Arduino 1.0.x vs 1.6.x).
123123
2. Restart the Arduino application and the latest version of Firmata will be available.
124124

release.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ cd temp
1616
find . -name "*.DS_Store" -type f -delete
1717
zip -r Firmata.zip ./Firmata/
1818
cd ..
19-
mv ./temp/Firmata.zip Firmata-2.5.2.zip
19+
mv ./temp/Firmata.zip Firmata-2.5.3.zip
2020

2121
#package for Arduino 1.6.x
2222
cp library.properties temp/Firmata
@@ -31,5 +31,5 @@ cd ..
3131
find . -name "*.DS_Store" -type f -delete
3232
zip -r Firmata.zip ./Firmata/
3333
cd ..
34-
mv ./temp/Firmata.zip Arduino-1.6.x-Firmata-2.5.2.zip
34+
mv ./temp/Firmata.zip Arduino-1.6.x-Firmata-2.5.3.zip
3535
rm -r ./temp

utility/BLEStream.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
Based on BLESerial.cpp by Voita Molda
55
https://github.com/sandeepmistry/arduino-BLEPeripheral/blob/master/examples/serial/BLESerial.h
66
7-
Last updated April 04th, 2016
7+
Last updated April 4th, 2016
88
*/
99

1010
#ifndef _BLE_STREAM_H_

0 commit comments

Comments
 (0)