|
20 | 20 | // de German
|
21 | 21 | // es Spanish
|
22 | 22 | // ru Russian
|
| 23 | +// bg Bulgarian |
23 | 24 | // it Italian
|
24 | 25 | // pt Portuguese
|
25 | 26 | // pt-br Portuguese (Brazil)
|
|
37 | 38 | #define LANGUAGE_INCLUDE GENERATE_LANGUAGE_INCLUDE(en)
|
38 | 39 | #endif
|
39 | 40 |
|
40 |
| -#if ENABLED(HAS_AUTOMATIC_VERSIONING) |
| 41 | +#if ENABLED(USE_AUTOMATIC_VERSIONING) |
41 | 42 | #include "_Version.h"
|
| 43 | +#else |
| 44 | + #include "Default_Version.h" |
42 | 45 | #endif
|
43 | 46 |
|
44 | 47 | #define PROTOCOL_VERSION "1.0"
|
45 | 48 |
|
46 | 49 | #if MB(ULTIMAKER)|| MB(ULTIMAKER_OLD)|| MB(ULTIMAIN_2)
|
47 | 50 | #define MACHINE_NAME "Ultimaker"
|
48 |
| - #define SOURCE_CODE_URL "http://firmware.ultimaker.com" |
| 51 | + #define SOURCE_CODE_URL "https://github.com/Ultimaker/Marlin" |
49 | 52 | #elif MB(RUMBA)
|
50 | 53 | #define MACHINE_NAME "Rumba"
|
51 | 54 | #elif MB(3DRAG)
|
|
63 | 66 | #define MACHINE_NAME "3D Printer"
|
64 | 67 | #endif
|
65 | 68 |
|
66 |
| -#ifdef CUSTOM_MENDEL_NAME |
67 |
| - #error CUSTOM_MENDEL_NAME deprecated - use CUSTOM_MACHINE_NAME |
68 |
| - #define CUSTOM_MACHINE_NAME CUSTOM_MENDEL_NAME |
69 |
| -#endif |
70 |
| - |
71 | 69 | #ifdef CUSTOM_MACHINE_NAME
|
72 | 70 | #undef MACHINE_NAME
|
73 | 71 | #define MACHINE_NAME CUSTOM_MACHINE_NAME
|
|
77 | 75 | #define SOURCE_CODE_URL "https://github.com/MarlinFirmware/Marlin"
|
78 | 76 | #endif
|
79 | 77 |
|
80 |
| -#ifndef BUILD_VERSION |
81 |
| - #define BUILD_VERSION "V1; Sprinter/grbl mashup for gen6" |
| 78 | +#ifndef DETAILED_BUILD_VERSION |
| 79 | + #error BUILD_VERSION Information must be specified |
82 | 80 | #endif
|
83 | 81 |
|
84 | 82 | #ifndef MACHINE_UUID
|
|
122 | 120 | #define MSG_INVALID_EXTRUDER "Invalid extruder"
|
123 | 121 | #define MSG_INVALID_SOLENOID "Invalid solenoid"
|
124 | 122 | #define MSG_ERR_NO_THERMISTORS "No thermistors - no temperature"
|
125 |
| -#define MSG_HEATING "Heating..." |
126 |
| -#define MSG_HEATING_COMPLETE "Heating done." |
127 |
| -#define MSG_BED_HEATING "Bed Heating." |
128 |
| -#define MSG_BED_DONE "Bed done." |
129 |
| -#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" |
| 123 | +#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" |
130 | 124 | #define MSG_COUNT_X " Count X: "
|
131 | 125 | #define MSG_ERR_KILLED "Printer halted. kill() called!"
|
132 | 126 | #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 | 189 | #define MSG_KP " Kp: "
|
196 | 190 | #define MSG_KI " Ki: "
|
197 | 191 | #define MSG_KD " Kd: "
|
| 192 | +#define MSG_B "B:" |
| 193 | +#define MSG_T "T:" |
198 | 194 | #define MSG_AT " @:"
|
199 | 195 | #define MSG_PID_AUTOTUNE_FINISHED MSG_PID_AUTOTUNE " finished! Put the last Kp, Ki and Kd constants from below into Configuration.h"
|
200 | 196 | #define MSG_PID_DEBUG " PID_DEBUG "
|
|
213 | 209 | #define MSG_T_MAXTEMP "MAXTEMP triggered"
|
214 | 210 | #define MSG_T_MINTEMP "MINTEMP triggered"
|
215 | 211 |
|
| 212 | +// Debug |
| 213 | +#define MSG_DEBUG_ECHO "DEBUG ECHO ENABLED" |
| 214 | +#define MSG_DEBUG_INFO "DEBUG INFO ENABLED" |
| 215 | +#define MSG_DEBUG_ERRORS "DEBUG ERRORS ENABLED" |
| 216 | +#define MSG_DEBUG_DRYRUN "DEBUG DRYRUN ENABLED" |
216 | 217 |
|
217 | 218 | // LCD Menu Messages
|
218 | 219 |
|
|
0 commit comments