diff --git a/ArduinoAddons/Arduino_1.5.x/hardware/marlin/avr/platform.local.txt b/ArduinoAddons/Arduino_1.5.x/hardware/marlin/avr/platform.local.txt index 7516f5065e67e21e18c24d240722162b7ad03e47..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 100644 --- a/ArduinoAddons/Arduino_1.5.x/hardware/marlin/avr/platform.local.txt +++ b/ArduinoAddons/Arduino_1.5.x/hardware/marlin/avr/platform.local.txt @@ -1,2 +0,0 @@ -compiler.cpp.extra_flags=-DHAS_AUTOMATIC_VERSIONING -recipe.hooks.prebuild.pattern=/usr/local/bin/generate_version_header_for_marlin "{build.source.path}" "{build.path}/_Version.h" diff --git a/ArduinoAddons/Arduino_1.6.x/hardware/marlin/avr/platform.local.txt b/ArduinoAddons/Arduino_1.6.x/hardware/marlin/avr/platform.local.txt index 61094db8ed001dc273f3bd6e1fe9e80fbe141872..b49606137894d4c5e40030fdb5b3699d16b66ac1 100644 --- a/ArduinoAddons/Arduino_1.6.x/hardware/marlin/avr/platform.local.txt +++ b/ArduinoAddons/Arduino_1.6.x/hardware/marlin/avr/platform.local.txt @@ -1,4 +1,4 @@ -compiler.cpp.extra_flags=-DHAS_AUTOMATIC_VERSIONING +compiler.cpp.extra_flags=-DUSE_AUTOMATIC_VERSIONING build.custom_bin.path.macosx=/usr/local/bin/ build.custom_bin.path.linux= recipe.hooks.prebuild0.pattern={build.custom_bin.path}generate_version_header_for_marlin "{build.source.path}" "{build.path}/_Version.h" diff --git a/LinuxAddons/bin/generate_version_header_for_marlin b/LinuxAddons/bin/generate_version_header_for_marlin index 0fa120bde44bca8fdf21dce19732127429faf9a2..a7bef9a5a2f208e7c71c7e5ce2af3196c818bb14 100755 --- a/LinuxAddons/bin/generate_version_header_for_marlin +++ b/LinuxAddons/bin/generate_version_header_for_marlin @@ -21,11 +21,16 @@ echo "#define STRING_DISTRIBUTION_DATE" `date '+"%Y-%m-%d %H:%M"'` >>"$OUTFILE" else BRANCH=" $BRANCH" fi - VERSION=`git describe --tags --first-parent 2>/dev/null` + VERSION=`git describe --tags --first-parent 2>/dev/null` if [ "x$VERSION" != "x" ] ; then - echo "#define BUILD_VERSION \"$VERSION\"" | sed "s/-/$BRANCH-/" >>"$OUTFILE" + echo "#define SHORT_BUILD_VERSION \"$VERSION\"" | sed "s/-.*/$BRANCH\"/" >>"$OUTFILE" + echo "#define DETAILED_BUILD_VERSION \"$VERSION\"" | sed "s/-/$BRANCH-/" >>"$OUTFILE" + else + VERSION=`git describe --tags --first-parent --always 2>/dev/null` + echo "#define SHORT_BUILD_VERSION \"$BRANCH\"" >>"$OUTFILE" + echo "#define DETAILED_BUILD_VERSION \"${BRANCH}-$VERSION\"" >>"$OUTFILE" fi - URL=`git config --local --get remote.origin.url | sed "sx.*github.com:xhttps://github.com/x" | sed "sx\.gitx/x"` + URL=`git config --local --get remote.origin.url | sed "sx.*github.com.xhttps://github.com/x" | sed "sx\.gitx/x"` if [ "x$URL" != "x" ] ; then echo "#define SOURCE_CODE_URL \""$URL"\"" >>"$OUTFILE" echo "// Deprecated URL definition" >>"$OUTFILE" diff --git a/Marlin/Configuration.h b/Marlin/Configuration.h index 71679be04124d78da638dbe0325e02f3ea968e20..32867a9086d2ce88f3106e8dca38da7db4e4937e 100644 --- a/Marlin/Configuration.h +++ b/Marlin/Configuration.h @@ -38,7 +38,7 @@ Here are some standard links for getting your machine calibrated: // @section info -#if ENABLED(HAS_AUTOMATIC_VERSIONING) +#if ENABLED(USE_AUTOMATIC_VERSIONING) #include "_Version.h" #else #include "Default_Version.h" @@ -49,7 +49,7 @@ Here are some standard links for getting your machine calibrated: // build by the user have been successfully uploaded into firmware. #define STRING_CONFIG_H_AUTHOR "(none, default config)" // Who made the changes. #define SHOW_BOOTSCREEN -#define STRING_SPLASH_LINE1 BUILD_VERSION // will be shown during bootup in line 1 +#define STRING_SPLASH_LINE1 SHORT_BUILD_VERSION // will be shown during bootup in line 1 //#define STRING_SPLASH_LINE2 STRING_DISTRIBUTION_DATE // will be shown during bootup in line 2 // @section machine diff --git a/Marlin/Default_Version.h b/Marlin/Default_Version.h index 78064c66a9edb1e9e73a8857f8fd93bc703cc819..9c95cc4618d879dd3f4db397f5b308a72181de5c 100644 --- a/Marlin/Default_Version.h +++ b/Marlin/Default_Version.h @@ -3,11 +3,12 @@ * It takes the place of an automatically created "_Version.h" which is generated during the build process */ -// #error "You must specify the following parameter related to your distribution" +// #error "You must specify the following parameters related to your distribution" #if true - #define BUILD_VERSION "1.0.3 dev" - #define STRING_DISTRIBUTION_DATE "2015-06-00 12:00" + #define SHORT_BUILD_VERSION "1.1.0 dev" + #define DETAILED_BUILD_VERSION "1.1.0 Development From Archive" + #define STRING_DISTRIBUTION_DATE "2015-08-00 12:00" // It might also be appropriate to define a location where additional information can be found #define SOURCE_CODE_URL "http:// ..." #endif \ No newline at end of file diff --git a/Marlin/Marlin_main.cpp b/Marlin/Marlin_main.cpp index 0fdbf6eaf88b833328b6a4f0907516bf9189f562..e702b84bad8a4e3f32848d68ed5cca85114a22de 100644 --- a/Marlin/Marlin_main.cpp +++ b/Marlin/Marlin_main.cpp @@ -638,7 +638,7 @@ void setup() { MCUSR = 0; SERIAL_ECHOPGM(MSG_MARLIN); - SERIAL_ECHOLNPGM(" " BUILD_VERSION); + SERIAL_ECHOLNPGM(" " SHORT_BUILD_VERSION); #ifdef STRING_DISTRIBUTION_DATE #ifdef STRING_CONFIG_H_AUTHOR diff --git a/Marlin/SanityCheck.h b/Marlin/SanityCheck.h index 3a23b6363402299ab8e5875ebdc6013ed5caec98..14368839a487192a904bf99a5a936fbe03f6cbd3 100644 --- a/Marlin/SanityCheck.h +++ b/Marlin/SanityCheck.h @@ -378,4 +378,12 @@ #error BTENABLED has been replaced with BLUETOOTH. Please update your configuration. #endif + #ifdef CUSTOM_MENDEL_NAME + #error CUSTOM_MENDEL_NAME deprecated - use CUSTOM_MACHINE_NAME instead + #endif + + #ifdef HAS_AUTOMATIC_VERSIONING + #error HAS_AUTOMATIC_VERSIONING deprecated - use USE_AUTOMATIC_VERSIONING instead + #endif + #endif //SANITYCHECK_H diff --git a/Marlin/configurator/config/Configuration.h b/Marlin/configurator/config/Configuration.h index 71679be04124d78da638dbe0325e02f3ea968e20..32867a9086d2ce88f3106e8dca38da7db4e4937e 100644 --- a/Marlin/configurator/config/Configuration.h +++ b/Marlin/configurator/config/Configuration.h @@ -38,7 +38,7 @@ Here are some standard links for getting your machine calibrated: // @section info -#if ENABLED(HAS_AUTOMATIC_VERSIONING) +#if ENABLED(USE_AUTOMATIC_VERSIONING) #include "_Version.h" #else #include "Default_Version.h" @@ -49,7 +49,7 @@ Here are some standard links for getting your machine calibrated: // build by the user have been successfully uploaded into firmware. #define STRING_CONFIG_H_AUTHOR "(none, default config)" // Who made the changes. #define SHOW_BOOTSCREEN -#define STRING_SPLASH_LINE1 BUILD_VERSION // will be shown during bootup in line 1 +#define STRING_SPLASH_LINE1 SHORT_BUILD_VERSION // will be shown during bootup in line 1 //#define STRING_SPLASH_LINE2 STRING_DISTRIBUTION_DATE // will be shown during bootup in line 2 // @section machine diff --git a/Marlin/configurator/config/boards.h b/Marlin/configurator/config/boards.h index 5e782125db93d9b7ded9872d670ad63ef6b91ab7..f6bbc9d6733856ae508bab7354960e1c2ec008aa 100644 --- a/Marlin/configurator/config/boards.h +++ b/Marlin/configurator/config/boards.h @@ -16,6 +16,7 @@ #define BOARD_RAMPS_13_EEF 36 // RAMPS 1.3 / 1.4 (Power outputs: Extruder0, Extruder1, Fan) #define BOARD_RAMPS_13_SF 38 // RAMPS 1.3 / 1.4 (Power outputs: Spindle, Controller Fan) #define BOARD_FELIX2 37 // Felix 2.0+ Electronics Board (RAMPS like) +#define BOARD_RIGIDBOARD 42 // Invent-A-Part RigidBoard #define BOARD_GEN6 5 // Gen6 #define BOARD_GEN6_DELUXE 51 // Gen6 deluxe #define BOARD_SANGUINOLOLU_11 6 // Sanguinololu < 1.2 @@ -42,11 +43,13 @@ #define BOARD_GEN3_MONOLITHIC 22 // Gen3 Monolithic Electronics #define BOARD_MEGATRONICS 70 // Megatronics #define BOARD_MEGATRONICS_2 701 // Megatronics v2.0 -#define BOARD_MEGATRONICS_1 702 // Minitronics v1.0 +#define BOARD_MINITRONICS 702 // Minitronics v1.0/1.1 #define BOARD_MEGATRONICS_3 703 // Megatronics v3.0 #define BOARD_OMCA_A 90 // Alpha OMCA board #define BOARD_OMCA 91 // Final OMCA board #define BOARD_RAMBO 301 // Rambo +#define BOARD_MINIRAMBO 302 // Mini-Rambo +#define BOARD_MEGACONTROLLER 310 // Mega controller #define BOARD_ELEFU_3 21 // Elefu Ra Board (v3) #define BOARD_5DPRINT 88 // 5DPrint D8 Driver Board #define BOARD_LEAPFROG 999 // Leapfrog diff --git a/Marlin/configurator/config/language.h b/Marlin/configurator/config/language.h index a13b69e3dfed5f830dddda59b05886e907294f2c..53e8b307779171980e6269c6c5087c07a3628ffd 100644 --- a/Marlin/configurator/config/language.h +++ b/Marlin/configurator/config/language.h @@ -20,6 +20,7 @@ // de German // es Spanish // ru Russian +// bg Bulgarian // it Italian // pt Portuguese // pt-br Portuguese (Brazil) @@ -37,15 +38,17 @@ #define LANGUAGE_INCLUDE GENERATE_LANGUAGE_INCLUDE(en) #endif -#if ENABLED(HAS_AUTOMATIC_VERSIONING) +#if ENABLED(USE_AUTOMATIC_VERSIONING) #include "_Version.h" +#else + #include "Default_Version.h" #endif #define PROTOCOL_VERSION "1.0" #if MB(ULTIMAKER)|| MB(ULTIMAKER_OLD)|| MB(ULTIMAIN_2) #define MACHINE_NAME "Ultimaker" - #define SOURCE_CODE_URL "http://firmware.ultimaker.com" + #define SOURCE_CODE_URL "https://github.com/Ultimaker/Marlin" #elif MB(RUMBA) #define MACHINE_NAME "Rumba" #elif MB(3DRAG) @@ -63,11 +66,6 @@ #define MACHINE_NAME "3D Printer" #endif -#ifdef CUSTOM_MENDEL_NAME - #error CUSTOM_MENDEL_NAME deprecated - use CUSTOM_MACHINE_NAME - #define CUSTOM_MACHINE_NAME CUSTOM_MENDEL_NAME -#endif - #ifdef CUSTOM_MACHINE_NAME #undef MACHINE_NAME #define MACHINE_NAME CUSTOM_MACHINE_NAME @@ -77,8 +75,8 @@ #define SOURCE_CODE_URL "https://github.com/MarlinFirmware/Marlin" #endif -#ifndef BUILD_VERSION - #define BUILD_VERSION "V1; Sprinter/grbl mashup for gen6" +#ifndef DETAILED_BUILD_VERSION + #error BUILD_VERSION Information must be specified #endif #ifndef MACHINE_UUID @@ -122,11 +120,7 @@ #define MSG_INVALID_EXTRUDER "Invalid extruder" #define MSG_INVALID_SOLENOID "Invalid solenoid" #define MSG_ERR_NO_THERMISTORS "No thermistors - no temperature" -#define MSG_HEATING "Heating..." -#define MSG_HEATING_COMPLETE "Heating done." -#define MSG_BED_HEATING "Bed Heating." -#define MSG_BED_DONE "Bed done." -#define MSG_M115_REPORT "FIRMWARE_NAME:Marlin " BUILD_VERSION " SOURCE_CODE_URL:" SOURCE_CODE_URL " PROTOCOL_VERSION:" PROTOCOL_VERSION " MACHINE_TYPE:" MACHINE_NAME " EXTRUDER_COUNT:" STRINGIFY(EXTRUDERS) " UUID:" MACHINE_UUID "\n" +#define MSG_M115_REPORT "FIRMWARE_NAME:Marlin " DETAILED_BUILD_VERSION " SOURCE_CODE_URL:" SOURCE_CODE_URL " PROTOCOL_VERSION:" PROTOCOL_VERSION " MACHINE_TYPE:" MACHINE_NAME " EXTRUDER_COUNT:" STRINGIFY(EXTRUDERS) " UUID:" MACHINE_UUID "\n" #define MSG_COUNT_X " Count X: " #define MSG_ERR_KILLED "Printer halted. kill() called!" #define MSG_ERR_STOPPED "Printer stopped due to errors. Fix the error and use M999 to restart. (Temperature is reset. Set it after restarting)" @@ -195,6 +189,8 @@ #define MSG_KP " Kp: " #define MSG_KI " Ki: " #define MSG_KD " Kd: " +#define MSG_B "B:" +#define MSG_T "T:" #define MSG_AT " @:" #define MSG_PID_AUTOTUNE_FINISHED MSG_PID_AUTOTUNE " finished! Put the last Kp, Ki and Kd constants from below into Configuration.h" #define MSG_PID_DEBUG " PID_DEBUG " @@ -213,6 +209,11 @@ #define MSG_T_MAXTEMP "MAXTEMP triggered" #define MSG_T_MINTEMP "MINTEMP triggered" +// Debug +#define MSG_DEBUG_ECHO "DEBUG ECHO ENABLED" +#define MSG_DEBUG_INFO "DEBUG INFO ENABLED" +#define MSG_DEBUG_ERRORS "DEBUG ERRORS ENABLED" +#define MSG_DEBUG_DRYRUN "DEBUG DRYRUN ENABLED" // LCD Menu Messages diff --git a/Marlin/example_configurations/Felix/Configuration.h b/Marlin/example_configurations/Felix/Configuration.h index d54687c970cd80592d4cc1aeb1514f84f6c7a143..eed4b979cce5a277ca306566203c0bdea53fef25 100644 --- a/Marlin/example_configurations/Felix/Configuration.h +++ b/Marlin/example_configurations/Felix/Configuration.h @@ -38,7 +38,7 @@ Here are some standard links for getting your machine calibrated: // @section info -#if ENABLED(HAS_AUTOMATIC_VERSIONING) +#if ENABLED(USE_AUTOMATIC_VERSIONING) #include "_Version.h" #else #include "Default_Version.h" @@ -49,7 +49,7 @@ Here are some standard links for getting your machine calibrated: // build by the user have been successfully uploaded into firmware. #define STRING_CONFIG_H_AUTHOR "(none, default config)" // Who made the changes. #define SHOW_BOOTSCREEN -#define STRING_SPLASH_LINE1 BUILD_VERSION // will be shown during bootup in line 1 +#define STRING_SPLASH_LINE1 SHORT_BUILD_VERSION // will be shown during bootup in line 1 //#define STRING_SPLASH_LINE2 STRING_DISTRIBUTION_DATE // will be shown during bootup in line 2 // @section machine diff --git a/Marlin/example_configurations/Felix/Configuration_DUAL.h b/Marlin/example_configurations/Felix/Configuration_DUAL.h index 1b57f282175307eb659289b76c27bd971d124c8b..3a6ae8d721baefbe3f2b43f70d52854213405e0b 100644 --- a/Marlin/example_configurations/Felix/Configuration_DUAL.h +++ b/Marlin/example_configurations/Felix/Configuration_DUAL.h @@ -38,7 +38,7 @@ Here are some standard links for getting your machine calibrated: // @section info -#if ENABLED(HAS_AUTOMATIC_VERSIONING) +#if ENABLED(USE_AUTOMATIC_VERSIONING) #include "_Version.h" #else #include "Default_Version.h" @@ -49,7 +49,7 @@ Here are some standard links for getting your machine calibrated: // build by the user have been successfully uploaded into firmware. #define STRING_CONFIG_H_AUTHOR "(none, default config)" // Who made the changes. #define SHOW_BOOTSCREEN -#define STRING_SPLASH_LINE1 BUILD_VERSION // will be shown during bootup in line 1 +#define STRING_SPLASH_LINE1 SHORT_BUILD_VERSION // will be shown during bootup in line 1 //#define STRING_SPLASH_LINE2 STRING_DISTRIBUTION_DATE // will be shown during bootup in line 2 // @section machine diff --git a/Marlin/example_configurations/Hephestos/Configuration.h b/Marlin/example_configurations/Hephestos/Configuration.h index 7d1487bdc11d87fcd71129572b19b0d417f5108d..b6fc265656564766c0beb5525a8c36d05095444a 100644 --- a/Marlin/example_configurations/Hephestos/Configuration.h +++ b/Marlin/example_configurations/Hephestos/Configuration.h @@ -38,7 +38,7 @@ Here are some standard links for getting your machine calibrated: // @section info -#if ENABLED(HAS_AUTOMATIC_VERSIONING) +#if ENABLED(USE_AUTOMATIC_VERSIONING) #include "_Version.h" #else #include "Default_Version.h" @@ -49,7 +49,7 @@ Here are some standard links for getting your machine calibrated: // build by the user have been successfully uploaded into firmware. #define STRING_CONFIG_H_AUTHOR "(none, default config)" // Who made the changes. #define SHOW_BOOTSCREEN -#define STRING_SPLASH_LINE1 BUILD_VERSION // will be shown during bootup in line 1 +#define STRING_SPLASH_LINE1 SHORT_BUILD_VERSION // will be shown during bootup in line 1 //#define STRING_SPLASH_LINE2 STRING_DISTRIBUTION_DATE // will be shown during bootup in line 2 // @section machine diff --git a/Marlin/example_configurations/K8200/Configuration.h b/Marlin/example_configurations/K8200/Configuration.h index 123620ca2dd7dbcc45d8e6ed0ff688c05c0a0ce9..f0a766f27ca028d5fafff2364d27abd5e6a040c1 100644 --- a/Marlin/example_configurations/K8200/Configuration.h +++ b/Marlin/example_configurations/K8200/Configuration.h @@ -43,7 +43,7 @@ Here are some standard links for getting your machine calibrated: // @section info -#if ENABLED(HAS_AUTOMATIC_VERSIONING) +#if ENABLED(USE_AUTOMATIC_VERSIONING) #include "_Version.h" #else #include "Default_Version.h" @@ -54,7 +54,7 @@ Here are some standard links for getting your machine calibrated: // build by the user have been successfully uploaded into firmware. #define STRING_CONFIG_H_AUTHOR "(K8200, CONSULitAS)" // Who made the changes. #define SHOW_BOOTSCREEN -#define STRING_SPLASH_LINE1 BUILD_VERSION // will be shown during bootup in line 1 +#define STRING_SPLASH_LINE1 SHORT_BUILD_VERSION // will be shown during bootup in line 1 //#define STRING_SPLASH_LINE2 STRING_DISTRIBUTION_DATE // will be shown during bootup in line 2 // @section machine diff --git a/Marlin/example_configurations/RepRapWorld/Megatronics/Configuration.h b/Marlin/example_configurations/RepRapWorld/Megatronics/Configuration.h index adb460ff3990cf7d076773bd9424b1299a2caff9..6c80e9fb21608d8f794443f531bad6771fc35b7d 100644 --- a/Marlin/example_configurations/RepRapWorld/Megatronics/Configuration.h +++ b/Marlin/example_configurations/RepRapWorld/Megatronics/Configuration.h @@ -38,7 +38,7 @@ Here are some standard links for getting your machine calibrated: // @section info -#if ENABLED(HAS_AUTOMATIC_VERSIONING) +#if ENABLED(USE_AUTOMATIC_VERSIONING) #include "_Version.h" #else #include "Default_Version.h" @@ -49,7 +49,7 @@ Here are some standard links for getting your machine calibrated: // build by the user have been successfully uploaded into firmware. #define STRING_CONFIG_H_AUTHOR "RepRapWorld.com" // Who made the changes. #define SHOW_BOOTSCREEN -#define STRING_SPLASH_LINE1 BUILD_VERSION // will be shown during bootup in line 1 +#define STRING_SPLASH_LINE1 SHORT_BUILD_VERSION // will be shown during bootup in line 1 //#define STRING_SPLASH_LINE2 STRING_DISTRIBUTION_DATE // will be shown during bootup in line 2 // @section machine diff --git a/Marlin/example_configurations/RigidBot/Configuration.h b/Marlin/example_configurations/RigidBot/Configuration.h index f48ade2ba62270471633fc820e687a8484a4048e..d70309e54cf0fdd53f4d1731ba8ac7aaaa1c9aaa 100644 --- a/Marlin/example_configurations/RigidBot/Configuration.h +++ b/Marlin/example_configurations/RigidBot/Configuration.h @@ -38,7 +38,7 @@ Here are some standard links for getting your machine calibrated: // @section info -#if ENABLED(HAS_AUTOMATIC_VERSIONING) +#if ENABLED(USE_AUTOMATIC_VERSIONING) #include "_Version.h" #else #include "Default_Version.h" @@ -49,7 +49,7 @@ Here are some standard links for getting your machine calibrated: // build by the user have been successfully uploaded into firmware. #define STRING_CONFIG_H_AUTHOR "(none, default config)" // Who made the changes. #define SHOW_BOOTSCREEN -#define STRING_SPLASH_LINE1 BUILD_VERSION // will be shown during bootup in line 1 +#define STRING_SPLASH_LINE1 SHORT_BUILD_VERSION // will be shown during bootup in line 1 //#define STRING_SPLASH_LINE2 STRING_DISTRIBUTION_DATE // will be shown during bootup in line 2 // @section machine diff --git a/Marlin/example_configurations/SCARA/Configuration.h b/Marlin/example_configurations/SCARA/Configuration.h index 957405b467fedcf26d1981358df0ecba7c48c301..ce57bd9877f4283e12fe03893646a91a2e781d0e 100644 --- a/Marlin/example_configurations/SCARA/Configuration.h +++ b/Marlin/example_configurations/SCARA/Configuration.h @@ -63,7 +63,7 @@ Here are some standard links for getting your machine calibrated: // @section info -#if ENABLED(HAS_AUTOMATIC_VERSIONING) +#if ENABLED(USE_AUTOMATIC_VERSIONING) #include "_Version.h" #else #include "Default_Version.h" @@ -74,7 +74,7 @@ Here are some standard links for getting your machine calibrated: // build by the user have been successfully uploaded into firmware. #define STRING_CONFIG_H_AUTHOR "(none, default config)" // Who made the changes. #define SHOW_BOOTSCREEN -#define STRING_SPLASH_LINE1 BUILD_VERSION // will be shown during bootup in line 1 +#define STRING_SPLASH_LINE1 SHORT_BUILD_VERSION // will be shown during bootup in line 1 //#define STRING_SPLASH_LINE2 STRING_DISTRIBUTION_DATE // will be shown during bootup in line 2 // @section machine diff --git a/Marlin/example_configurations/WITBOX/Configuration.h b/Marlin/example_configurations/WITBOX/Configuration.h index 4523ef9504d1ac35f710e277e15cd5a6496bba41..718c1518d1b954378d9ba8684e4a6f95818baca9 100644 --- a/Marlin/example_configurations/WITBOX/Configuration.h +++ b/Marlin/example_configurations/WITBOX/Configuration.h @@ -38,7 +38,7 @@ Here are some standard links for getting your machine calibrated: // @section info -#if ENABLED(HAS_AUTOMATIC_VERSIONING) +#if ENABLED(USE_AUTOMATIC_VERSIONING) #include "_Version.h" #else #include "Default_Version.h" @@ -49,7 +49,7 @@ Here are some standard links for getting your machine calibrated: // build by the user have been successfully uploaded into firmware. #define STRING_CONFIG_H_AUTHOR "(bq Witbox)" // Who made the changes. #define SHOW_BOOTSCREEN -#define STRING_SPLASH_LINE1 BUILD_VERSION // will be shown during bootup in line 1 +#define STRING_SPLASH_LINE1 SHORT_BUILD_VERSION // will be shown during bootup in line 1 //#define STRING_SPLASH_LINE2 STRING_DISTRIBUTION_DATE // will be shown during bootup in line 2 // @section machine diff --git a/Marlin/example_configurations/adafruit/ST7565/Configuration.h b/Marlin/example_configurations/adafruit/ST7565/Configuration.h index 179b9f2dece6c467873b405252094c6c245941dd..31b8ec589d53afe86e3bc54ddfda90841278f57b 100644 --- a/Marlin/example_configurations/adafruit/ST7565/Configuration.h +++ b/Marlin/example_configurations/adafruit/ST7565/Configuration.h @@ -38,7 +38,7 @@ Here are some standard links for getting your machine calibrated: // @section info -#if ENABLED(HAS_AUTOMATIC_VERSIONING) +#if ENABLED(USE_AUTOMATIC_VERSIONING) #include "_Version.h" #else #include "Default_Version.h" @@ -49,7 +49,7 @@ Here are some standard links for getting your machine calibrated: // build by the user have been successfully uploaded into firmware. #define STRING_CONFIG_H_AUTHOR "(none, default config)" // Who made the changes. #define SHOW_BOOTSCREEN -#define STRING_SPLASH_LINE1 BUILD_VERSION // will be shown during bootup in line 1 +#define STRING_SPLASH_LINE1 SHORT_BUILD_VERSION // will be shown during bootup in line 1 //#define STRING_SPLASH_LINE2 STRING_DISTRIBUTION_DATE // will be shown during bootup in line 2 // @section machine diff --git a/Marlin/example_configurations/delta/biv2.5/Configuration.h b/Marlin/example_configurations/delta/biv2.5/Configuration.h index cca54a993f11549d34d6c71cd87948f30c3f726a..8a9d9395b9429a106be1ec61402b23a64e45a48a 100644 --- a/Marlin/example_configurations/delta/biv2.5/Configuration.h +++ b/Marlin/example_configurations/delta/biv2.5/Configuration.h @@ -38,7 +38,7 @@ Here are some standard links for getting your machine calibrated: // @section info -#if ENABLED(HAS_AUTOMATIC_VERSIONING) +#if ENABLED(USE_AUTOMATIC_VERSIONING) #include "_Version.h" #else #include "Default_Version.h" @@ -49,7 +49,7 @@ Here are some standard links for getting your machine calibrated: // build by the user have been successfully uploaded into firmware. #define STRING_CONFIG_H_AUTHOR "(none, default config)" // Who made the changes. #define SHOW_BOOTSCREEN -#define STRING_SPLASH_LINE1 BUILD_VERSION // will be shown during bootup in line 1 +#define STRING_SPLASH_LINE1 SHORT_BUILD_VERSION // will be shown during bootup in line 1 //#define STRING_SPLASH_LINE2 STRING_DISTRIBUTION_DATE // will be shown during bootup in line 2 // @section machine diff --git a/Marlin/example_configurations/delta/generic/Configuration.h b/Marlin/example_configurations/delta/generic/Configuration.h index 521cfcae11cc774854ff7ce5db6524dfc822b48f..6564673aa1dbea42c3e83956fc1eff96d86b4872 100644 --- a/Marlin/example_configurations/delta/generic/Configuration.h +++ b/Marlin/example_configurations/delta/generic/Configuration.h @@ -38,7 +38,7 @@ Here are some standard links for getting your machine calibrated: // @section info -#if ENABLED(HAS_AUTOMATIC_VERSIONING) +#if ENABLED(USE_AUTOMATIC_VERSIONING) #include "_Version.h" #else #include "Default_Version.h" @@ -49,7 +49,7 @@ Here are some standard links for getting your machine calibrated: // build by the user have been successfully uploaded into firmware. #define STRING_CONFIG_H_AUTHOR "(none, default config)" // Who made the changes. #define SHOW_BOOTSCREEN -#define STRING_SPLASH_LINE1 BUILD_VERSION // will be shown during bootup in line 1 +#define STRING_SPLASH_LINE1 SHORT_BUILD_VERSION // will be shown during bootup in line 1 //#define STRING_SPLASH_LINE2 STRING_DISTRIBUTION_DATE // will be shown during bootup in line 2 // @section machine diff --git a/Marlin/example_configurations/delta/kossel_mini/Configuration.h b/Marlin/example_configurations/delta/kossel_mini/Configuration.h index 07bedbbb1e03808dcd2eed140522e49b4b4da27c..04a1e46840786e9cf58d42fae1503054a9230136 100644 --- a/Marlin/example_configurations/delta/kossel_mini/Configuration.h +++ b/Marlin/example_configurations/delta/kossel_mini/Configuration.h @@ -38,7 +38,7 @@ Here are some standard links for getting your machine calibrated: // @section info -#if ENABLED(HAS_AUTOMATIC_VERSIONING) +#if ENABLED(USE_AUTOMATIC_VERSIONING) #include "_Version.h" #else #include "Default_Version.h" @@ -49,7 +49,7 @@ Here are some standard links for getting your machine calibrated: // build by the user have been successfully uploaded into firmware. #define STRING_CONFIG_H_AUTHOR "(none, default config)" // Who made the changes. #define SHOW_BOOTSCREEN -#define STRING_SPLASH_LINE1 BUILD_VERSION // will be shown during bootup in line 1 +#define STRING_SPLASH_LINE1 SHORT_BUILD_VERSION // will be shown during bootup in line 1 //#define STRING_SPLASH_LINE2 STRING_DISTRIBUTION_DATE // will be shown during bootup in line 2 // @section machine diff --git a/Marlin/example_configurations/delta/kossel_pro/Configuration.h b/Marlin/example_configurations/delta/kossel_pro/Configuration.h index 3f88166caf152614c110273fd9ac9dd988ae2d83..d4fbcb326dd1f6067a6e216ffe0c2311257ae7b9 100644 --- a/Marlin/example_configurations/delta/kossel_pro/Configuration.h +++ b/Marlin/example_configurations/delta/kossel_pro/Configuration.h @@ -42,7 +42,7 @@ Here are some standard links for getting your machine calibrated: // @section info -#if ENABLED(HAS_AUTOMATIC_VERSIONING) +#if ENABLED(USE_AUTOMATIC_VERSIONING) #include "_Version.h" #else #include "Default_Version.h" @@ -53,7 +53,7 @@ Here are some standard links for getting your machine calibrated: // build by the user have been successfully uploaded into firmware. #define STRING_CONFIG_H_AUTHOR "(none, default config)" // Who made the changes. #define SHOW_BOOTSCREEN -#define STRING_SPLASH_LINE1 BUILD_VERSION // will be shown during bootup in line 1 +#define STRING_SPLASH_LINE1 SHORT_BUILD_VERSION // will be shown during bootup in line 1 //#define STRING_SPLASH_LINE2 STRING_DISTRIBUTION_DATE // will be shown during bootup in line 2 // @section machine diff --git a/Marlin/example_configurations/makibox/Configuration.h b/Marlin/example_configurations/makibox/Configuration.h index 7ac1105f90805034ecddfad8ef42606af6396061..2fd078367377cd72829e1a4cfaada0637b9e71b7 100644 --- a/Marlin/example_configurations/makibox/Configuration.h +++ b/Marlin/example_configurations/makibox/Configuration.h @@ -38,7 +38,7 @@ Here are some standard links for getting your machine calibrated: // @section info -#if ENABLED(HAS_AUTOMATIC_VERSIONING) +#if ENABLED(USE_AUTOMATIC_VERSIONING) #include "_Version.h" #else #include "Default_Version.h" @@ -49,7 +49,7 @@ Here are some standard links for getting your machine calibrated: // build by the user have been successfully uploaded into firmware. #define STRING_CONFIG_H_AUTHOR "(none, default config)" // Who made the changes. #define SHOW_BOOTSCREEN -#define STRING_SPLASH_LINE1 BUILD_VERSION // will be shown during bootup in line 1 +#define STRING_SPLASH_LINE1 SHORT_BUILD_VERSION // will be shown during bootup in line 1 //#define STRING_SPLASH_LINE2 STRING_DISTRIBUTION_DATE // will be shown during bootup in line 2 // @section machine diff --git a/Marlin/example_configurations/tvrrug/Round2/Configuration.h b/Marlin/example_configurations/tvrrug/Round2/Configuration.h index 8aba468434578fb70bbd5dc275bf3d0dd2bfe174..2067a215ab9db6b208e72e19302d30e5b8a1b01d 100644 --- a/Marlin/example_configurations/tvrrug/Round2/Configuration.h +++ b/Marlin/example_configurations/tvrrug/Round2/Configuration.h @@ -38,7 +38,7 @@ Here are some standard links for getting your machine calibrated: // @section info -#if ENABLED(HAS_AUTOMATIC_VERSIONING) +#if ENABLED(USE_AUTOMATIC_VERSIONING) #include "_Version.h" #else #include "Default_Version.h" @@ -49,7 +49,7 @@ Here are some standard links for getting your machine calibrated: // build by the user have been successfully uploaded into firmware. #define STRING_CONFIG_H_AUTHOR "(none, default config)" // Who made the changes. #define SHOW_BOOTSCREEN -#define STRING_SPLASH_LINE1 BUILD_VERSION // will be shown during bootup in line 1 +#define STRING_SPLASH_LINE1 SHORT_BUILD_VERSION // will be shown during bootup in line 1 //#define STRING_SPLASH_LINE2 STRING_DISTRIBUTION_DATE // will be shown during bootup in line 2 // @section machine diff --git a/Marlin/language.h b/Marlin/language.h index 10f012775ab53c1fd9d3a86c6c7beee0eb7f3e53..53e8b307779171980e6269c6c5087c07a3628ffd 100644 --- a/Marlin/language.h +++ b/Marlin/language.h @@ -38,8 +38,10 @@ #define LANGUAGE_INCLUDE GENERATE_LANGUAGE_INCLUDE(en) #endif -#if ENABLED(HAS_AUTOMATIC_VERSIONING) +#if ENABLED(USE_AUTOMATIC_VERSIONING) #include "_Version.h" +#else + #include "Default_Version.h" #endif #define PROTOCOL_VERSION "1.0" @@ -64,11 +66,6 @@ #define MACHINE_NAME "3D Printer" #endif -#ifdef CUSTOM_MENDEL_NAME - #error CUSTOM_MENDEL_NAME deprecated - use CUSTOM_MACHINE_NAME - #define CUSTOM_MACHINE_NAME CUSTOM_MENDEL_NAME -#endif - #ifdef CUSTOM_MACHINE_NAME #undef MACHINE_NAME #define MACHINE_NAME CUSTOM_MACHINE_NAME @@ -78,8 +75,8 @@ #define SOURCE_CODE_URL "https://github.com/MarlinFirmware/Marlin" #endif -#ifndef BUILD_VERSION - #define BUILD_VERSION "V1; Sprinter/grbl mashup for gen6" +#ifndef DETAILED_BUILD_VERSION + #error BUILD_VERSION Information must be specified #endif #ifndef MACHINE_UUID @@ -123,7 +120,7 @@ #define MSG_INVALID_EXTRUDER "Invalid extruder" #define MSG_INVALID_SOLENOID "Invalid solenoid" #define MSG_ERR_NO_THERMISTORS "No thermistors - no temperature" -#define MSG_M115_REPORT "FIRMWARE_NAME:Marlin " BUILD_VERSION " SOURCE_CODE_URL:" SOURCE_CODE_URL " PROTOCOL_VERSION:" PROTOCOL_VERSION " MACHINE_TYPE:" MACHINE_NAME " EXTRUDER_COUNT:" STRINGIFY(EXTRUDERS) " UUID:" MACHINE_UUID "\n" +#define MSG_M115_REPORT "FIRMWARE_NAME:Marlin " DETAILED_BUILD_VERSION " SOURCE_CODE_URL:" SOURCE_CODE_URL " PROTOCOL_VERSION:" PROTOCOL_VERSION " MACHINE_TYPE:" MACHINE_NAME " EXTRUDER_COUNT:" STRINGIFY(EXTRUDERS) " UUID:" MACHINE_UUID "\n" #define MSG_COUNT_X " Count X: " #define MSG_ERR_KILLED "Printer halted. kill() called!" #define MSG_ERR_STOPPED "Printer stopped due to errors. Fix the error and use M999 to restart. (Temperature is reset. Set it after restarting)"