Move versioning to MarlinConfig.h
This commit is contained in:
		
							parent
							
								
									7e70a0b05d
								
							
						
					
					
						commit
						24a1a16e5d
					
				| @ -83,12 +83,6 @@ | |||||||
| 
 | 
 | ||||||
| // @section info
 | // @section info
 | ||||||
| 
 | 
 | ||||||
| #if ENABLED(USE_AUTOMATIC_VERSIONING) |  | ||||||
|   #include "_Version.h" |  | ||||||
| #else |  | ||||||
|   #include "Version.h" |  | ||||||
| #endif |  | ||||||
| 
 |  | ||||||
| // User-specified version info of this build to display in [Pronterface, etc] terminal window during
 | // User-specified version info of this build to display in [Pronterface, etc] terminal window during
 | ||||||
| // startup. Implementation of an idea by Prof Braino to inform user that any changes made to this
 | // startup. Implementation of an idea by Prof Braino to inform user that any changes made to this
 | ||||||
| // build by the user have been successfully uploaded into firmware.
 | // build by the user have been successfully uploaded into firmware.
 | ||||||
|  | |||||||
| @ -25,6 +25,7 @@ | |||||||
| 
 | 
 | ||||||
| #include "macros.h" | #include "macros.h" | ||||||
| #include "boards.h" | #include "boards.h" | ||||||
|  | #include "Version.h" | ||||||
| #include "Configuration.h" | #include "Configuration.h" | ||||||
| #include "Conditionals_LCD.h" | #include "Conditionals_LCD.h" | ||||||
| #include "Configuration_adv.h" | #include "Configuration_adv.h" | ||||||
|  | |||||||
							
								
								
									
										104
									
								
								Marlin/Version.h
									
									
									
									
									
								
							
							
						
						
									
										104
									
								
								Marlin/Version.h
									
									
									
									
									
								
							| @ -26,59 +26,67 @@ | |||||||
|  * directive USE_AUTOMATIC_VERSIONING. |  * directive USE_AUTOMATIC_VERSIONING. | ||||||
|  */ |  */ | ||||||
| 
 | 
 | ||||||
| /**
 | #if ENABLED(USE_AUTOMATIC_VERSIONING) | ||||||
|  * Marlin release version identifier |  | ||||||
|  */ |  | ||||||
| #define SHORT_BUILD_VERSION "1.1.0-RCBugFix" |  | ||||||
| 
 | 
 | ||||||
| /**
 |   #include "_Version.h" | ||||||
|  * Verbose version identifier which should contain a reference to the location |  | ||||||
|  * from where the binary was downloaded or the source code was compiled. |  | ||||||
|  */ |  | ||||||
| #define DETAILED_BUILD_VERSION SHORT_BUILD_VERSION " (Github)" |  | ||||||
| 
 | 
 | ||||||
| /**
 | #else | ||||||
|  * The STRING_DISTRIBUTION_DATE represents when the binary file was built, |  | ||||||
|  * here we define this default string as the date where the latest release |  | ||||||
|  * version was tagged. |  | ||||||
|  */ |  | ||||||
| #define STRING_DISTRIBUTION_DATE "2016-04-27 12:00" |  | ||||||
| 
 | 
 | ||||||
| /**
 |   /**
 | ||||||
|  * Required minimum Configuration.h and Configuration_adv.h file versions. |    * Marlin release version identifier | ||||||
|  * |    */ | ||||||
|  * You must increment this version number for every significant change such as, |   #define SHORT_BUILD_VERSION "1.1.0-RCBugFix" | ||||||
|  * but not limited to: ADD, DELETE RENAME OR REPURPOSE any directive/option on |  | ||||||
|  * the configuration files. |  | ||||||
|  */ |  | ||||||
| #define REQUIRED_CONFIGURATION_H_VERSION 010100 |  | ||||||
| #define REQUIRED_CONFIGURATION_ADV_H_VERSION 010100 |  | ||||||
| 
 | 
 | ||||||
| /**
 |   /**
 | ||||||
|  * @todo: Missing documentation block |    * Verbose version identifier which should contain a reference to the location | ||||||
|  */ |    * from where the binary was downloaded or the source code was compiled. | ||||||
| #define PROTOCOL_VERSION "1.0" |    */ | ||||||
|  |   #define DETAILED_BUILD_VERSION SHORT_BUILD_VERSION " (Github)" | ||||||
| 
 | 
 | ||||||
| /**
 |   /**
 | ||||||
|  * Defines a generic printer name to be output to the LCD after booting Marlin. |    * The STRING_DISTRIBUTION_DATE represents when the binary file was built, | ||||||
|  */ |    * here we define this default string as the date where the latest release | ||||||
| #define MACHINE_NAME "3D Printer" |    * version was tagged. | ||||||
|  |    */ | ||||||
|  |   #define STRING_DISTRIBUTION_DATE "2016-04-27 12:00" | ||||||
| 
 | 
 | ||||||
| /**
 |   /**
 | ||||||
|  * The SOURCE_CODE_URL is the location where users will find the Marlin Source |    * Required minimum Configuration.h and Configuration_adv.h file versions. | ||||||
|  * Code which is installed on the device. In most cases —unless the manufacturer |    * | ||||||
|  * has a distinct Github fork— the Source Code URL should just be the main |    * You must increment this version number for every significant change such as, | ||||||
|  * Marlin repository. |    * but not limited to: ADD, DELETE RENAME OR REPURPOSE any directive/option on | ||||||
|  */ |    * the configuration files. | ||||||
| #define SOURCE_CODE_URL "https://github.com/MarlinFirmware/Marlin"
 |    */ | ||||||
|  |   #define REQUIRED_CONFIGURATION_H_VERSION 010100 | ||||||
|  |   #define REQUIRED_CONFIGURATION_ADV_H_VERSION 010100 | ||||||
| 
 | 
 | ||||||
| /**
 |   /**
 | ||||||
|  * Default generic printer UUID. |    * @todo: Missing documentation block | ||||||
|  */ |    */ | ||||||
| #define DEFAULT_MACHINE_UUID "cede2a2f-41a2-4748-9b12-c55c62f367ff" |   #define PROTOCOL_VERSION "1.0" | ||||||
| 
 | 
 | ||||||
| /**
 |   /**
 | ||||||
|  * The WEBSITE_URL is the location where users can get more information such as |    * Defines a generic printer name to be output to the LCD after booting Marlin. | ||||||
|  * documentation about a specific Marlin release. |    */ | ||||||
|  */ |   #define MACHINE_NAME "3D Printer" | ||||||
| #define WEBSITE_URL "http://marlinfw.org"
 | 
 | ||||||
|  |   /**
 | ||||||
|  |    * The SOURCE_CODE_URL is the location where users will find the Marlin Source | ||||||
|  |    * Code which is installed on the device. In most cases —unless the manufacturer | ||||||
|  |    * has a distinct Github fork— the Source Code URL should just be the main | ||||||
|  |    * Marlin repository. | ||||||
|  |    */ | ||||||
|  |   #define SOURCE_CODE_URL "https://github.com/MarlinFirmware/Marlin"
 | ||||||
|  | 
 | ||||||
|  |   /**
 | ||||||
|  |    * Default generic printer UUID. | ||||||
|  |    */ | ||||||
|  |   #define DEFAULT_MACHINE_UUID "cede2a2f-41a2-4748-9b12-c55c62f367ff" | ||||||
|  | 
 | ||||||
|  |   /**
 | ||||||
|  |    * The WEBSITE_URL is the location where users can get more information such as | ||||||
|  |    * documentation about a specific Marlin release. | ||||||
|  |    */ | ||||||
|  |   #define WEBSITE_URL "http://marlinfw.org"
 | ||||||
|  | 
 | ||||||
|  | #endif // USE_AUTOMATIC_VERSIONING
 | ||||||
|  | |||||||
| @ -83,12 +83,6 @@ | |||||||
| 
 | 
 | ||||||
| // @section info
 | // @section info
 | ||||||
| 
 | 
 | ||||||
| #if ENABLED(USE_AUTOMATIC_VERSIONING) |  | ||||||
|   #include "_Version.h" |  | ||||||
| #else |  | ||||||
|   #include "Version.h" |  | ||||||
| #endif |  | ||||||
| 
 |  | ||||||
| // User-specified version info of this build to display in [Pronterface, etc] terminal window during
 | // User-specified version info of this build to display in [Pronterface, etc] terminal window during
 | ||||||
| // startup. Implementation of an idea by Prof Braino to inform user that any changes made to this
 | // startup. Implementation of an idea by Prof Braino to inform user that any changes made to this
 | ||||||
| // build by the user have been successfully uploaded into firmware.
 | // build by the user have been successfully uploaded into firmware.
 | ||||||
|  | |||||||
| @ -83,12 +83,6 @@ | |||||||
| 
 | 
 | ||||||
| // @section info
 | // @section info
 | ||||||
| 
 | 
 | ||||||
| #if ENABLED(USE_AUTOMATIC_VERSIONING) |  | ||||||
|   #include "_Version.h" |  | ||||||
| #else |  | ||||||
|   #include "Version.h" |  | ||||||
| #endif |  | ||||||
| 
 |  | ||||||
| // User-specified version info of this build to display in [Pronterface, etc] terminal window during
 | // User-specified version info of this build to display in [Pronterface, etc] terminal window during
 | ||||||
| // startup. Implementation of an idea by Prof Braino to inform user that any changes made to this
 | // startup. Implementation of an idea by Prof Braino to inform user that any changes made to this
 | ||||||
| // build by the user have been successfully uploaded into firmware.
 | // build by the user have been successfully uploaded into firmware.
 | ||||||
|  | |||||||
| @ -83,12 +83,6 @@ | |||||||
| 
 | 
 | ||||||
| // @section info
 | // @section info
 | ||||||
| 
 | 
 | ||||||
| #if ENABLED(USE_AUTOMATIC_VERSIONING) |  | ||||||
|   #include "_Version.h" |  | ||||||
| #else |  | ||||||
|   #include "Version.h" |  | ||||||
| #endif |  | ||||||
| 
 |  | ||||||
| // User-specified version info of this build to display in [Pronterface, etc] terminal window during
 | // User-specified version info of this build to display in [Pronterface, etc] terminal window during
 | ||||||
| // startup. Implementation of an idea by Prof Braino to inform user that any changes made to this
 | // startup. Implementation of an idea by Prof Braino to inform user that any changes made to this
 | ||||||
| // build by the user have been successfully uploaded into firmware.
 | // build by the user have been successfully uploaded into firmware.
 | ||||||
|  | |||||||
| @ -83,12 +83,6 @@ | |||||||
| 
 | 
 | ||||||
| // @section info
 | // @section info
 | ||||||
| 
 | 
 | ||||||
| #if ENABLED(USE_AUTOMATIC_VERSIONING) |  | ||||||
|   #include "_Version.h" |  | ||||||
| #else |  | ||||||
|   #include "Version.h" |  | ||||||
| #endif |  | ||||||
| 
 |  | ||||||
| // User-specified version info of this build to display in [Pronterface, etc] terminal window during
 | // User-specified version info of this build to display in [Pronterface, etc] terminal window during
 | ||||||
| // startup. Implementation of an idea by Prof Braino to inform user that any changes made to this
 | // startup. Implementation of an idea by Prof Braino to inform user that any changes made to this
 | ||||||
| // build by the user have been successfully uploaded into firmware.
 | // build by the user have been successfully uploaded into firmware.
 | ||||||
|  | |||||||
| @ -83,12 +83,6 @@ | |||||||
| 
 | 
 | ||||||
| // @section info
 | // @section info
 | ||||||
| 
 | 
 | ||||||
| #if ENABLED(USE_AUTOMATIC_VERSIONING) |  | ||||||
|   #include "_Version.h" |  | ||||||
| #else |  | ||||||
|   #include "Version.h" |  | ||||||
| #endif |  | ||||||
| 
 |  | ||||||
| // User-specified version info of this build to display in [Pronterface, etc] terminal window during
 | // User-specified version info of this build to display in [Pronterface, etc] terminal window during
 | ||||||
| // startup. Implementation of an idea by Prof Braino to inform user that any changes made to this
 | // startup. Implementation of an idea by Prof Braino to inform user that any changes made to this
 | ||||||
| // build by the user have been successfully uploaded into firmware.
 | // build by the user have been successfully uploaded into firmware.
 | ||||||
|  | |||||||
| @ -90,12 +90,6 @@ | |||||||
| 
 | 
 | ||||||
| // @section info
 | // @section info
 | ||||||
| 
 | 
 | ||||||
| #if ENABLED(USE_AUTOMATIC_VERSIONING) |  | ||||||
|   #include "_Version.h" |  | ||||||
| #else |  | ||||||
|   #include "Version.h" |  | ||||||
| #endif |  | ||||||
| 
 |  | ||||||
| // User-specified version info of this build to display in [Pronterface, etc] terminal window during
 | // User-specified version info of this build to display in [Pronterface, etc] terminal window during
 | ||||||
| // startup. Implementation of an idea by Prof Braino to inform user that any changes made to this
 | // startup. Implementation of an idea by Prof Braino to inform user that any changes made to this
 | ||||||
| // build by the user have been successfully uploaded into firmware.
 | // build by the user have been successfully uploaded into firmware.
 | ||||||
|  | |||||||
| @ -83,12 +83,6 @@ | |||||||
| 
 | 
 | ||||||
| // @section info
 | // @section info
 | ||||||
| 
 | 
 | ||||||
| #if ENABLED(USE_AUTOMATIC_VERSIONING) |  | ||||||
|   #include "_Version.h" |  | ||||||
| #else |  | ||||||
|   #include "Version.h" |  | ||||||
| #endif |  | ||||||
| 
 |  | ||||||
| // User-specified version info of this build to display in [Pronterface, etc] terminal window during
 | // User-specified version info of this build to display in [Pronterface, etc] terminal window during
 | ||||||
| // startup. Implementation of an idea by Prof Braino to inform user that any changes made to this
 | // startup. Implementation of an idea by Prof Braino to inform user that any changes made to this
 | ||||||
| // build by the user have been successfully uploaded into firmware.
 | // build by the user have been successfully uploaded into firmware.
 | ||||||
|  | |||||||
| @ -83,12 +83,6 @@ | |||||||
| 
 | 
 | ||||||
| // @section info
 | // @section info
 | ||||||
| 
 | 
 | ||||||
| #if ENABLED(USE_AUTOMATIC_VERSIONING) |  | ||||||
|   #include "_Version.h" |  | ||||||
| #else |  | ||||||
|   #include "Version.h" |  | ||||||
| #endif |  | ||||||
| 
 |  | ||||||
| // User-specified version info of this build to display in [Pronterface, etc] terminal window during
 | // User-specified version info of this build to display in [Pronterface, etc] terminal window during
 | ||||||
| // startup. Implementation of an idea by Prof Braino to inform user that any changes made to this
 | // startup. Implementation of an idea by Prof Braino to inform user that any changes made to this
 | ||||||
| // build by the user have been successfully uploaded into firmware.
 | // build by the user have been successfully uploaded into firmware.
 | ||||||
|  | |||||||
| @ -83,12 +83,6 @@ | |||||||
| 
 | 
 | ||||||
| // @section info
 | // @section info
 | ||||||
| 
 | 
 | ||||||
| #if ENABLED(USE_AUTOMATIC_VERSIONING) |  | ||||||
|   #include "_Version.h" |  | ||||||
| #else |  | ||||||
|   #include "Version.h" |  | ||||||
| #endif |  | ||||||
| 
 |  | ||||||
| // User-specified version info of this build to display in [Pronterface, etc] terminal window during
 | // User-specified version info of this build to display in [Pronterface, etc] terminal window during
 | ||||||
| // startup. Implementation of an idea by Prof Braino to inform user that any changes made to this
 | // startup. Implementation of an idea by Prof Braino to inform user that any changes made to this
 | ||||||
| // build by the user have been successfully uploaded into firmware.
 | // build by the user have been successfully uploaded into firmware.
 | ||||||
|  | |||||||
| @ -83,12 +83,6 @@ | |||||||
| 
 | 
 | ||||||
| // @section info
 | // @section info
 | ||||||
| 
 | 
 | ||||||
| #if ENABLED(USE_AUTOMATIC_VERSIONING) |  | ||||||
|   #include "_Version.h" |  | ||||||
| #else |  | ||||||
|   #include "Version.h" |  | ||||||
| #endif |  | ||||||
| 
 |  | ||||||
| // User-specified version info of this build to display in [Pronterface, etc] terminal window during
 | // User-specified version info of this build to display in [Pronterface, etc] terminal window during
 | ||||||
| // startup. Implementation of an idea by Prof Braino to inform user that any changes made to this
 | // startup. Implementation of an idea by Prof Braino to inform user that any changes made to this
 | ||||||
| // build by the user have been successfully uploaded into firmware.
 | // build by the user have been successfully uploaded into firmware.
 | ||||||
|  | |||||||
| @ -108,12 +108,6 @@ | |||||||
| 
 | 
 | ||||||
| // @section info
 | // @section info
 | ||||||
| 
 | 
 | ||||||
| #if ENABLED(USE_AUTOMATIC_VERSIONING) |  | ||||||
|   #include "_Version.h" |  | ||||||
| #else |  | ||||||
|   #include "Version.h" |  | ||||||
| #endif |  | ||||||
| 
 |  | ||||||
| // User-specified version info of this build to display in [Pronterface, etc] terminal window during
 | // User-specified version info of this build to display in [Pronterface, etc] terminal window during
 | ||||||
| // startup. Implementation of an idea by Prof Braino to inform user that any changes made to this
 | // startup. Implementation of an idea by Prof Braino to inform user that any changes made to this
 | ||||||
| // build by the user have been successfully uploaded into firmware.
 | // build by the user have been successfully uploaded into firmware.
 | ||||||
|  | |||||||
| @ -83,12 +83,6 @@ | |||||||
| 
 | 
 | ||||||
| // @section info
 | // @section info
 | ||||||
| 
 | 
 | ||||||
| #if ENABLED(USE_AUTOMATIC_VERSIONING) |  | ||||||
|   #include "_Version.h" |  | ||||||
| #else |  | ||||||
|   #include "Version.h" |  | ||||||
| #endif |  | ||||||
| 
 |  | ||||||
| // User-specified version info of this build to display in [Pronterface, etc] terminal window during
 | // User-specified version info of this build to display in [Pronterface, etc] terminal window during
 | ||||||
| // startup. Implementation of an idea by Prof Braino to inform user that any changes made to this
 | // startup. Implementation of an idea by Prof Braino to inform user that any changes made to this
 | ||||||
| // build by the user have been successfully uploaded into firmware.
 | // build by the user have been successfully uploaded into firmware.
 | ||||||
|  | |||||||
| @ -83,12 +83,6 @@ | |||||||
| 
 | 
 | ||||||
| // @section info
 | // @section info
 | ||||||
| 
 | 
 | ||||||
| #if ENABLED(USE_AUTOMATIC_VERSIONING) |  | ||||||
|   #include "_Version.h" |  | ||||||
| #else |  | ||||||
|   #include "Version.h" |  | ||||||
| #endif |  | ||||||
| 
 |  | ||||||
| // User-specified version info of this build to display in [Pronterface, etc] terminal window during
 | // User-specified version info of this build to display in [Pronterface, etc] terminal window during
 | ||||||
| // startup. Implementation of an idea by Prof Braino to inform user that any changes made to this
 | // startup. Implementation of an idea by Prof Braino to inform user that any changes made to this
 | ||||||
| // build by the user have been successfully uploaded into firmware.
 | // build by the user have been successfully uploaded into firmware.
 | ||||||
|  | |||||||
| @ -83,12 +83,6 @@ | |||||||
| 
 | 
 | ||||||
| // @section info
 | // @section info
 | ||||||
| 
 | 
 | ||||||
| #if ENABLED(USE_AUTOMATIC_VERSIONING) |  | ||||||
|   #include "_Version.h" |  | ||||||
| #else |  | ||||||
|   #include "Version.h" |  | ||||||
| #endif |  | ||||||
| 
 |  | ||||||
| // User-specified version info of this build to display in [Pronterface, etc] terminal window during
 | // User-specified version info of this build to display in [Pronterface, etc] terminal window during
 | ||||||
| // startup. Implementation of an idea by Prof Braino to inform user that any changes made to this
 | // startup. Implementation of an idea by Prof Braino to inform user that any changes made to this
 | ||||||
| // build by the user have been successfully uploaded into firmware.
 | // build by the user have been successfully uploaded into firmware.
 | ||||||
|  | |||||||
| @ -83,12 +83,6 @@ | |||||||
| 
 | 
 | ||||||
| // @section info
 | // @section info
 | ||||||
| 
 | 
 | ||||||
| #if ENABLED(USE_AUTOMATIC_VERSIONING) |  | ||||||
|   #include "_Version.h" |  | ||||||
| #else |  | ||||||
|   #include "Version.h" |  | ||||||
| #endif |  | ||||||
| 
 |  | ||||||
| // User-specified version info of this build to display in [Pronterface, etc] terminal window during
 | // User-specified version info of this build to display in [Pronterface, etc] terminal window during
 | ||||||
| // startup. Implementation of an idea by Prof Braino to inform user that any changes made to this
 | // startup. Implementation of an idea by Prof Braino to inform user that any changes made to this
 | ||||||
| // build by the user have been successfully uploaded into firmware.
 | // build by the user have been successfully uploaded into firmware.
 | ||||||
|  | |||||||
| @ -83,12 +83,6 @@ | |||||||
| 
 | 
 | ||||||
| // @section info
 | // @section info
 | ||||||
| 
 | 
 | ||||||
| #if ENABLED(USE_AUTOMATIC_VERSIONING) |  | ||||||
|   #include "_Version.h" |  | ||||||
| #else |  | ||||||
|   #include "Version.h" |  | ||||||
| #endif |  | ||||||
| 
 |  | ||||||
| // User-specified version info of this build to display in [Pronterface, etc] terminal window during
 | // User-specified version info of this build to display in [Pronterface, etc] terminal window during
 | ||||||
| // startup. Implementation of an idea by Prof Braino to inform user that any changes made to this
 | // startup. Implementation of an idea by Prof Braino to inform user that any changes made to this
 | ||||||
| // build by the user have been successfully uploaded into firmware.
 | // build by the user have been successfully uploaded into firmware.
 | ||||||
|  | |||||||
| @ -83,12 +83,6 @@ | |||||||
| 
 | 
 | ||||||
| // @section info
 | // @section info
 | ||||||
| 
 | 
 | ||||||
| #if ENABLED(USE_AUTOMATIC_VERSIONING) |  | ||||||
|   #include "_Version.h" |  | ||||||
| #else |  | ||||||
|   #include "Version.h" |  | ||||||
| #endif |  | ||||||
| 
 |  | ||||||
| // User-specified version info of this build to display in [Pronterface, etc] terminal window during
 | // User-specified version info of this build to display in [Pronterface, etc] terminal window during
 | ||||||
| // startup. Implementation of an idea by Prof Braino to inform user that any changes made to this
 | // startup. Implementation of an idea by Prof Braino to inform user that any changes made to this
 | ||||||
| // build by the user have been successfully uploaded into firmware.
 | // build by the user have been successfully uploaded into firmware.
 | ||||||
|  | |||||||
| @ -89,12 +89,6 @@ | |||||||
| 
 | 
 | ||||||
| // @section info
 | // @section info
 | ||||||
| 
 | 
 | ||||||
| #if ENABLED(USE_AUTOMATIC_VERSIONING) |  | ||||||
|   #include "_Version.h" |  | ||||||
| #else |  | ||||||
|   #include "Version.h" |  | ||||||
| #endif |  | ||||||
| 
 |  | ||||||
| // User-specified version info of this build to display in [Pronterface, etc] terminal window during
 | // User-specified version info of this build to display in [Pronterface, etc] terminal window during
 | ||||||
| // startup. Implementation of an idea by Prof Braino to inform user that any changes made to this
 | // startup. Implementation of an idea by Prof Braino to inform user that any changes made to this
 | ||||||
| // build by the user have been successfully uploaded into firmware.
 | // build by the user have been successfully uploaded into firmware.
 | ||||||
|  | |||||||
| @ -76,12 +76,6 @@ | |||||||
| 
 | 
 | ||||||
| // @section info
 | // @section info
 | ||||||
| 
 | 
 | ||||||
| #if ENABLED(USE_AUTOMATIC_VERSIONING) |  | ||||||
|   #include "_Version.h" |  | ||||||
| #else |  | ||||||
|   #include "Version.h" |  | ||||||
| #endif |  | ||||||
| 
 |  | ||||||
| // User-specified version info of this build to display in [Pronterface, etc] terminal window during
 | // User-specified version info of this build to display in [Pronterface, etc] terminal window during
 | ||||||
| // startup. Implementation of an idea by Prof Braino to inform user that any changes made to this
 | // startup. Implementation of an idea by Prof Braino to inform user that any changes made to this
 | ||||||
| // build by the user have been successfully uploaded into firmware.
 | // build by the user have been successfully uploaded into firmware.
 | ||||||
|  | |||||||
| @ -83,12 +83,6 @@ | |||||||
| 
 | 
 | ||||||
| // @section info
 | // @section info
 | ||||||
| 
 | 
 | ||||||
| #if ENABLED(USE_AUTOMATIC_VERSIONING) |  | ||||||
|   #include "_Version.h" |  | ||||||
| #else |  | ||||||
|   #include "Version.h" |  | ||||||
| #endif |  | ||||||
| 
 |  | ||||||
| // User-specified version info of this build to display in [Pronterface, etc] terminal window during
 | // User-specified version info of this build to display in [Pronterface, etc] terminal window during
 | ||||||
| // startup. Implementation of an idea by Prof Braino to inform user that any changes made to this
 | // startup. Implementation of an idea by Prof Braino to inform user that any changes made to this
 | ||||||
| // build by the user have been successfully uploaded into firmware.
 | // build by the user have been successfully uploaded into firmware.
 | ||||||
|  | |||||||
| @ -83,12 +83,6 @@ | |||||||
| 
 | 
 | ||||||
| // @section info
 | // @section info
 | ||||||
| 
 | 
 | ||||||
| #if ENABLED(USE_AUTOMATIC_VERSIONING) |  | ||||||
|   #include "_Version.h" |  | ||||||
| #else |  | ||||||
|   #include "Version.h" |  | ||||||
| #endif |  | ||||||
| 
 |  | ||||||
| // User-specified version info of this build to display in [Pronterface, etc] terminal window during
 | // User-specified version info of this build to display in [Pronterface, etc] terminal window during
 | ||||||
| // startup. Implementation of an idea by Prof Braino to inform user that any changes made to this
 | // startup. Implementation of an idea by Prof Braino to inform user that any changes made to this
 | ||||||
| // build by the user have been successfully uploaded into firmware.
 | // build by the user have been successfully uploaded into firmware.
 | ||||||
|  | |||||||
| @ -68,12 +68,6 @@ | |||||||
| // pt_utf8    Portuguese (UTF8)
 | // pt_utf8    Portuguese (UTF8)
 | ||||||
| // ru         Russian
 | // ru         Russian
 | ||||||
| 
 | 
 | ||||||
| #if ENABLED(USE_AUTOMATIC_VERSIONING) |  | ||||||
|   #include "_Version.h" |  | ||||||
| #else |  | ||||||
|   #include "Version.h" |  | ||||||
| #endif |  | ||||||
| 
 |  | ||||||
| #ifdef DEFAULT_SOURCE_CODE_URL | #ifdef DEFAULT_SOURCE_CODE_URL | ||||||
|   #undef  SOURCE_CODE_URL |   #undef  SOURCE_CODE_URL | ||||||
|   #define SOURCE_CODE_URL DEFAULT_SOURCE_CODE_URL |   #define SOURCE_CODE_URL DEFAULT_SOURCE_CODE_URL | ||||||
|  | |||||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user