Skip to content

Commit 956e663

Browse files
bump version to 2.4.4
1 parent 0821d82 commit 956e663

File tree

11 files changed

+30
-18
lines changed

11 files changed

+30
-18
lines changed

Boards.h

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@
88
version 2.1 of the License, or (at your option) any later version.
99
1010
See file LICENSE.txt for further informations on licensing terms.
11+
12+
Last updated August 9th, 2015
1113
*/
1214

1315
#ifndef Firmata_Boards_h
@@ -139,7 +141,7 @@ writePort(port, value, bitmask): Write an 8 bit port.
139141
#endif
140142

141143
// Arduino Duemilanove, Diecimila, and NG
142-
#if defined(__AVR_ATmega168__) || defined(__AVR_ATmega328P__)
144+
#if defined(__AVR_ATmega168__) || defined(__AVR_ATmega328P__) || defined(__AVR_ATmega328__)
143145
#if defined(NUM_ANALOG_INPUTS) && NUM_ANALOG_INPUTS == 6
144146
#define TOTAL_ANALOG_PINS 6
145147
#define TOTAL_PINS 20 // 14 digital + 6 analog

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.4.3 - 2015-4-11
2+
Firmata.cpp - Firmata library v2.4.4 - 2015-8-9
33
Copyright (c) 2006-2008 Hans-Christoph Steiner. All rights reserved.
44
55
This library is free software; you can redistribute it and/or

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.4.3 - 2015-4-11
2+
Firmata.h - Firmata library v2.4.4 - 2015-8-9
33
Copyright (c) 2006-2008 Hans-Christoph Steiner. All rights reserved.
44
55
This library is free software; you can redistribute it and/or
@@ -21,7 +21,7 @@
2121
* installed firmware. */
2222
#define FIRMATA_MAJOR_VERSION 2 // for non-compatible changes
2323
#define FIRMATA_MINOR_VERSION 4 // for backwards compatible changes
24-
#define FIRMATA_BUGFIX_VERSION 3 // for bugfix releases
24+
#define FIRMATA_BUGFIX_VERSION 4 // for bugfix releases
2525

2626
#define MAX_DATA_BYTES 64 // max number of data bytes in incoming messages
2727

examples/StandardFirmata/StandardFirmata.ino

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
any host computer software package.
55
66
To download a host software package, please clink on the following link
7-
to open the download page in your default browser.
7+
to open the list of Firmata client libraries your default browser.
88
99
https://github.com/firmata/arduino#firmata-client-libraries
1010
@@ -20,7 +20,7 @@
2020
2121
See file LICENSE.txt for further informations on licensing terms.
2222
23-
Last updated by Jeff Hoefs: April 11, 2015
23+
Last updated by Jeff Hoefs: August 9th, 2015
2424
*/
2525

2626
#include <Servo.h>

examples/StandardFirmataChipKIT/StandardFirmataChipKIT.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
any host computer software package.
55
66
To download a host software package, please clink on the following link
7-
to open the download page in your default browser.
7+
to open the list of Firmata client libraries your default browser.
88
99
https://github.com/firmata/arduino#firmata-client-libraries
1010

examples/StandardFirmataEthernet/StandardFirmataEthernet.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
2121
See file LICENSE.txt for further informations on licensing terms.
2222
23-
Last updated by Jeff Hoefs: April 11, 2015
23+
Last updated by Jeff Hoefs: August 9th, 2015
2424
*/
2525

2626
/*

examples/StandardFirmataYun/StandardFirmataYun.ino

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,14 @@
44
any host computer software package.
55
66
To download a host software package, please clink on the following link
7-
to open the download page in your default browser.
7+
to open the list of Firmata client libraries your default browser.
88
99
https://github.com/firmata/arduino#firmata-client-libraries
1010
1111
Copyright (C) 2006-2008 Hans-Christoph Steiner. All rights reserved.
1212
Copyright (C) 2010-2011 Paul Stoffregen. All rights reserved.
1313
Copyright (C) 2009 Shigeru Kobayashi. All rights reserved.
14-
Copyright (C) 2009-2014 Jeff Hoefs. All rights reserved.
14+
Copyright (C) 2009-2015 Jeff Hoefs. All rights reserved.
1515
Copyright (C) 2014 Alan Yorinks. All rights reserved.
1616
1717
This library is free software; you can redistribute it and/or
@@ -21,7 +21,7 @@
2121
2222
See file LICENSE.txt for further informations on licensing terms.
2323
24-
Last updated by Jeff Hoefs: April 11, 2015
24+
Last updated by Jeff Hoefs: August 9th, 2015
2525
*/
2626

2727
/*

extras/revisions.txt

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
FIRMATA 2.4.4 - Aug 9, 2015
2+
3+
[core library]
4+
* Added support for chipKIT boards (Brian Schmalz, Rick Anderson and Keith Vogel)
5+
* Added support for ATmega328 boards (previously only ATmega328p was supported)
6+
7+
[StandardFirmata]
8+
* Added StandardFirmataChipKIT for ChipKIT boards (Brian Schmalz, Rick Anderson and Keith Vogel)
9+
* Ensure Serial is ready on Leonardo and other ATMega32u4-based boards
10+
111
FIRMATA 2.4.3 - Apr 11, 2015
212

313
[core library]

library.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name=Firmata
2-
version=2.4.3
2+
version=2.4.4
33
author=Firmata Developers
44
maintainer=https://github.com/firmata/arduino
55
sentence=Enables the communication with computer apps using a standard serial protocol. For all Arduino boards.

readme.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ Most of the time you will be interacting with arduino with a client library on t
6060
Note: The above libraries may support various versions of the Firmata protocol and therefore may not support all features of the latest Firmata spec nor all arduino and arduino-compatible boards. Refer to the respective projects for details.
6161

6262
##Updating Firmata in the Arduino IDE
63-
The version of firmata in the Arduino IDE contains an outdated version of Firmata. To update Firmata, download the latest [release](https://github.com/firmata/arduino/releases/tag/v2.4.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.
63+
The version of firmata in the Arduino IDE contains an outdated version of Firmata. To update Firmata, download the latest [release](https://github.com/firmata/arduino/releases/tag/v2.4.4) (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.
6464

6565
*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).*
6666

@@ -71,7 +71,7 @@ The Firmata library is contained within the Arduino package.
7171
1. Navigate to the Arduino application
7272
2. Right click on the application icon and select `Show Package Contents`
7373
3. Navigate to: `/Contents/Resources/Java/libraries/` and replace the existing
74-
`Firmata` folder with latest [Firmata release](https://github.com/firmata/arduino/releases/tag/v2.4.3) (note there is a different download
74+
`Firmata` folder with latest [Firmata release](https://github.com/firmata/arduino/releases/tag/v2.4.4) (note there is a different download
7575
for Arduino 1.0.x vs 1.6.x)
7676
4. Restart the Arduino application and the latest version of Firmata will be available.
7777

@@ -81,7 +81,7 @@ will differ slightly: `Contents/Java/libraries/Firmata` (no Resources directory)
8181
###Windows:
8282

8383
1. Navigate to `c:/Program\ Files/arduino-1.x/libraries/` and replace the existing
84-
`Firmata` folder with the latest [Firmata release](https://github.com/firmata/arduino/releases/tag/v2.4.3) (note there is a different download
84+
`Firmata` folder with the latest [Firmata release](https://github.com/firmata/arduino/releases/tag/v2.4.4) (note there is a different download
8585
for Arduino 1.0.x vs 1.6.x).
8686
2. Restart the Arduino application and the latest version of Firmata will be available.
8787

@@ -90,7 +90,7 @@ for Arduino 1.0.x vs 1.6.x).
9090
###Linux:
9191

9292
1. Navigate to `~/arduino-1.x/libraries/` and replace the existing
93-
`Firmata` folder with the latest [Firmata release](https://github.com/firmata/arduino/releases/tag/v2.4.3) (note there is a different download
93+
`Firmata` folder with the latest [Firmata release](https://github.com/firmata/arduino/releases/tag/v2.4.4) (note there is a different download
9494
for Arduino 1.0.x vs 1.6.x).
9595
2. Restart the Arduino application and the latest version of Firmata will be available.
9696

0 commit comments

Comments
 (0)