Skip to content

Commit

Permalink
Update Version to 3.3.1
Browse files Browse the repository at this point in the history
Only a bugfix release (build issues on ESP32)
  • Loading branch information
pgrawehr committed Dec 27, 2024
1 parent fb0a936 commit 73dad25
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion library.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"type": "git",
"url": "https://github.com/firmata/ConfigurableFirmata.git"
},
"version": "3.3.0",
"version": "3.3.1",
"exclude": [
"extras",
"test"
Expand Down
2 changes: 1 addition & 1 deletion library.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name=ConfigurableFirmata
version=3.3.0
version=3.3.1
author=Firmata Developers
maintainer=https://github.com/firmata/ConfigurableFirmata
sentence=This library implements the Firmata protocol as a set of plugins that can be used to create applications to remotely interface with an Arduino board.
Expand Down
2 changes: 1 addition & 1 deletion src/ConfigurableFirmata.h
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
*/
#define FIRMATA_FIRMWARE_MAJOR_VERSION 3 // for non-compatible changes
#define FIRMATA_FIRMWARE_MINOR_VERSION 3 // for backwards compatible changes
#define FIRMATA_FIRMWARE_BUGFIX_VERSION 0 // for bugfix releases
#define FIRMATA_FIRMWARE_BUGFIX_VERSION 1 // for bugfix releases

#ifdef LARGE_MEM_DEVICE
#define MAX_DATA_BYTES 252 // The ESP32 has enough RAM so we can reduce the number of packets, but the value must not exceed 2^8 - 1, because many methods use byte-indexing only
Expand Down

0 comments on commit 73dad25

Please sign in to comment.