Skip to content

Commit 2c82cc1

Browse files
Merge pull request firmata#244 from firmata/v2.5
prepare for v2.5 release
2 parents e530667 + 522cb5c commit 2c82cc1

File tree

17 files changed

+114
-1336
lines changed

17 files changed

+114
-1336
lines changed

Boards.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
1010
See file LICENSE.txt for further informations on licensing terms.
1111
12-
Last updated August 9th, 2015
12+
Last updated November 5th, 2015
1313
*/
1414

1515
#ifndef Firmata_Boards_h

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.4 - 2015-8-9
2+
Firmata.cpp - Firmata library v2.5.0 - 2015-11-7
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: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
Firmata.h - Firmata library v2.4.4 - 2015-8-9
2+
Firmata.h - Firmata library v2.5.0 - 2015-11-7
33
Copyright (c) 2006-2008 Hans-Christoph Steiner. All rights reserved.
44
55
This library is free software; you can redistribute it and/or
@@ -20,8 +20,8 @@
2020
* software can test whether it will be compatible with the currently
2121
* installed firmware. */
2222
#define FIRMATA_MAJOR_VERSION 2 // for non-compatible changes
23-
#define FIRMATA_MINOR_VERSION 4 // for backwards compatible changes
24-
#define FIRMATA_BUGFIX_VERSION 4 // for bugfix releases
23+
#define FIRMATA_MINOR_VERSION 5 // for backwards compatible changes
24+
#define FIRMATA_BUGFIX_VERSION 0 // 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
@@ -256,7 +256,7 @@ void setPinModeCallback(byte pin, int mode)
256256
if (IS_PIN_DIGITAL(pin)) {
257257
pinMode(PIN_TO_DIGITAL(pin), INPUT); // disable output driver
258258
#if ARDUINO <= 100
259-
// deprecated since Arduino 1.0.1 - TODO: drop support in Firmata 2.5
259+
// deprecated since Arduino 1.0.1 - TODO: drop support in Firmata 2.6
260260
digitalWrite(PIN_TO_DIGITAL(pin), LOW); // disable internal pull-ups
261261
#endif
262262
}
@@ -267,7 +267,7 @@ void setPinModeCallback(byte pin, int mode)
267267
if (IS_PIN_DIGITAL(pin)) {
268268
pinMode(PIN_TO_DIGITAL(pin), INPUT); // disable output driver
269269
#if ARDUINO <= 100
270-
// deprecated since Arduino 1.0.1 - TODO: drop support in Firmata 2.5
270+
// deprecated since Arduino 1.0.1 - TODO: drop support in Firmata 2.6
271271
digitalWrite(PIN_TO_DIGITAL(pin), LOW); // disable internal pull-ups
272272
#endif
273273
pinConfig[pin] = INPUT;

examples/StandardFirmataChipKIT/StandardFirmataChipKIT.ino

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -267,7 +267,7 @@ void setPinModeCallback(byte pin, int mode)
267267
if (IS_PIN_DIGITAL(pin)) {
268268
pinMode(PIN_TO_DIGITAL(pin), INPUT); // disable output driver
269269
#if ARDUINO <= 100
270-
// deprecated since Arduino 1.0.1 - TODO: drop support in Firmata 2.5
270+
// deprecated since Arduino 1.0.1 - TODO: drop support in Firmata 2.6
271271
digitalWrite(PIN_TO_DIGITAL(pin), LOW); // disable internal pull-ups
272272
#endif
273273
}
@@ -278,7 +278,7 @@ void setPinModeCallback(byte pin, int mode)
278278
if (IS_PIN_DIGITAL(pin)) {
279279
pinMode(PIN_TO_DIGITAL(pin), INPUT); // disable output driver
280280
#if ARDUINO <= 100
281-
// deprecated since Arduino 1.0.1 - TODO: drop support in Firmata 2.5
281+
// deprecated since Arduino 1.0.1 - TODO: drop support in Firmata 2.6
282282
digitalWrite(PIN_TO_DIGITAL(pin), LOW); // disable internal pull-ups
283283
#endif
284284
pinConfig[pin] = INPUT;

examples/StandardFirmataEthernet/StandardFirmataEthernet.ino

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -374,7 +374,7 @@ void setPinModeCallback(byte pin, int mode)
374374
if (IS_PIN_DIGITAL(pin)) {
375375
pinMode(PIN_TO_DIGITAL(pin), INPUT); // disable output driver
376376
#if ARDUINO <= 100
377-
// deprecated since Arduino 1.0.1 - TODO: drop support in Firmata 2.5
377+
// deprecated since Arduino 1.0.1 - TODO: drop support in Firmata 2.6
378378
digitalWrite(PIN_TO_DIGITAL(pin), LOW); // disable internal pull-ups
379379
#endif
380380
}
@@ -385,7 +385,7 @@ void setPinModeCallback(byte pin, int mode)
385385
if (IS_PIN_DIGITAL(pin)) {
386386
pinMode(PIN_TO_DIGITAL(pin), INPUT); // disable output driver
387387
#if ARDUINO <= 100
388-
// deprecated since Arduino 1.0.1 - TODO: drop support in Firmata 2.5
388+
// deprecated since Arduino 1.0.1 - TODO: drop support in Firmata 2.6
389389
digitalWrite(PIN_TO_DIGITAL(pin), LOW); // disable internal pull-ups
390390
#endif
391391
pinConfig[pin] = INPUT;

examples/StandardFirmataEthernetPlus/StandardFirmataEthernetPlus.ino

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -462,7 +462,7 @@ void setPinModeCallback(byte pin, int mode)
462462
if (IS_PIN_DIGITAL(pin)) {
463463
pinMode(PIN_TO_DIGITAL(pin), INPUT); // disable output driver
464464
#if ARDUINO <= 100
465-
// deprecated since Arduino 1.0.1 - TODO: drop support in Firmata 2.5
465+
// deprecated since Arduino 1.0.1 - TODO: drop support in Firmata 2.6
466466
digitalWrite(PIN_TO_DIGITAL(pin), LOW); // disable internal pull-ups
467467
#endif
468468
}
@@ -473,7 +473,7 @@ void setPinModeCallback(byte pin, int mode)
473473
if (IS_PIN_DIGITAL(pin)) {
474474
pinMode(PIN_TO_DIGITAL(pin), INPUT); // disable output driver
475475
#if ARDUINO <= 100
476-
// deprecated since Arduino 1.0.1 - TODO: drop support in Firmata 2.5
476+
// deprecated since Arduino 1.0.1 - TODO: drop support in Firmata 2.6
477477
digitalWrite(PIN_TO_DIGITAL(pin), LOW); // disable internal pull-ups
478478
#endif
479479
pinConfig[pin] = INPUT;

examples/StandardFirmataPlus/StandardFirmataPlus.ino

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -390,7 +390,7 @@ void setPinModeCallback(byte pin, int mode)
390390
if (IS_PIN_DIGITAL(pin)) {
391391
pinMode(PIN_TO_DIGITAL(pin), INPUT); // disable output driver
392392
#if ARDUINO <= 100
393-
// deprecated since Arduino 1.0.1 - TODO: drop support in Firmata 2.5
393+
// deprecated since Arduino 1.0.1 - TODO: drop support in Firmata 2.6
394394
digitalWrite(PIN_TO_DIGITAL(pin), LOW); // disable internal pull-ups
395395
#endif
396396
}
@@ -401,7 +401,7 @@ void setPinModeCallback(byte pin, int mode)
401401
if (IS_PIN_DIGITAL(pin)) {
402402
pinMode(PIN_TO_DIGITAL(pin), INPUT); // disable output driver
403403
#if ARDUINO <= 100
404-
// deprecated since Arduino 1.0.1 - TODO: drop support in Firmata 2.5
404+
// deprecated since Arduino 1.0.1 - TODO: drop support in Firmata 2.6
405405
digitalWrite(PIN_TO_DIGITAL(pin), LOW); // disable internal pull-ups
406406
#endif
407407
pinConfig[pin] = INPUT;

0 commit comments

Comments
 (0)