|
|
@ -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
|
|
|
|
|
|
|
|