Skip to content

Commit e5a167a

Browse files
committed
🔖 Version 2.1.2.5
1 parent 613ff20 commit e5a167a

File tree

6 files changed

+100
-70
lines changed

6 files changed

+100
-70
lines changed

Marlin/Configuration.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
*
3636
* Advanced settings can be found in Configuration_adv.h
3737
*/
38-
#define CONFIGURATION_H_VERSION 02010204
38+
#define CONFIGURATION_H_VERSION 02010205
3939

4040
//===========================================================================
4141
//============================= Getting Started =============================

Marlin/Configuration_adv.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
*
3131
* Basic settings can be found in Configuration.h
3232
*/
33-
#define CONFIGURATION_ADV_H_VERSION 02010204
33+
#define CONFIGURATION_ADV_H_VERSION 02010205
3434

3535
// @section develop
3636

Marlin/Version.h

+11-4
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
/**
2929
* Marlin release version identifier
3030
*/
31-
//#define SHORT_BUILD_VERSION "2.1.2.4"
31+
//#define SHORT_BUILD_VERSION "2.1.2.5"
3232

3333
/**
3434
* Verbose version identifier which should contain a reference to the location
@@ -41,7 +41,14 @@
4141
* here we define this default string as the date where the latest release
4242
* version was tagged.
4343
*/
44-
//#define STRING_DISTRIBUTION_DATE "2024-05-29"
44+
//#define STRING_DISTRIBUTION_DATE "2024-11-18"
45+
46+
/**
47+
* The protocol for communication to the host. Protocol indicates communication
48+
* standards such as the use of ASCII, "echo:" and "error:" line prefixes, etc.
49+
* (Other behaviors are given by the firmware version and capabilities report.)
50+
*/
51+
//#define PROTOCOL_VERSION "1.0"
4552

4653
/**
4754
* Defines a generic printer name to be output to the LCD after booting Marlin.
@@ -68,8 +75,8 @@
6875
//#define WEBSITE_URL "marlinfw.org"
6976

7077
/**
71-
* Set the vendor info the serial USB interface, if changable
72-
* Currently only supported by DUE platform
78+
* Set the vendor info the serial USB interface, if changeable.
79+
* Currently only supported by DUE platform.
7380
*/
7481
//#define USB_DEVICE_VENDOR_ID 0x0000
7582
//#define USB_DEVICE_PRODUCT_ID 0x0000

Marlin/src/inc/Version.h

+5-5
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
* Release version. Leave the Marlin version or apply a custom scheme.
2626
*/
2727
#ifndef SHORT_BUILD_VERSION
28-
#define SHORT_BUILD_VERSION "2.1.2.4"
28+
#define SHORT_BUILD_VERSION "2.1.2.5"
2929
#endif
3030

3131
/**
@@ -42,7 +42,7 @@
4242
* version was tagged.
4343
*/
4444
#ifndef STRING_DISTRIBUTION_DATE
45-
#define STRING_DISTRIBUTION_DATE "2024-06-16"
45+
#define STRING_DISTRIBUTION_DATE "2024-11-18"
4646
#endif
4747

4848
/**
@@ -52,7 +52,7 @@
5252
* to alert users to major changes.
5353
*/
5454

55-
#define MARLIN_HEX_VERSION 02010204
55+
#define MARLIN_HEX_VERSION 02010205
5656
#ifndef REQUIRED_CONFIGURATION_H_VERSION
5757
#define REQUIRED_CONFIGURATION_H_VERSION MARLIN_HEX_VERSION
5858
#endif
@@ -101,8 +101,8 @@
101101
#endif
102102

103103
/**
104-
* Set the vendor info the serial USB interface, if changable
105-
* Currently only supported by DUE platform
104+
* Set the vendor info the serial USB interface, if changeable.
105+
* Currently only supported by DUE platform.
106106
*/
107107
#ifndef USB_DEVICE_VENDOR_ID
108108
#define USB_DEVICE_VENDOR_ID 0x03EB /* ATMEL VID */

0 commit comments

Comments
 (0)