Skip to content

Commit 9e5d2b8

Browse files
increased input data buffer size from 32 to 64 bytes
1 parent 04b04d5 commit 9e5d2b8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Firmata.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@
2121
* installed firmware. */
2222
#define FIRMATA_MAJOR_VERSION 2 // for non-compatible changes
2323
#define FIRMATA_MINOR_VERSION 3 // for backwards compatible changes
24-
#define FIRMATA_BUGFIX_VERSION 6 // for bugfix releases
24+
#define FIRMATA_BUGFIX_VERSION 7 // for bugfix releases
2525

26-
#define MAX_DATA_BYTES 32 // max number of data bytes in non-Sysex messages
26+
#define MAX_DATA_BYTES 64 // max number of data bytes in incoming messages
2727

2828
// message command bytes (128-255/0x80-0xFF)
2929
#define DIGITAL_MESSAGE 0x90 // send data for a digital pin

0 commit comments

Comments
 (0)