|
@@ -36,24 +36,27 @@
|
36
|
36
|
#include "UBL.h"
|
37
|
37
|
#include "ultralcd.h"
|
38
|
38
|
|
39
|
|
- #define EXTRUSION_MULTIPLIER 1.0 // This is too much clutter for the main Configuration.h file But
|
40
|
|
- #define RETRACTION_MULTIPLIER 1.0 // some user have expressed an interest in being able to customize
|
41
|
|
- #define NOZZLE 0.3 // these numbers for their printer so they don't need to type all
|
42
|
|
- #define FILAMENT 1.75 // the options every time they do a Mesh Validation Print.
|
|
39
|
+ #define EXTRUSION_MULTIPLIER 1.0
|
|
40
|
+ #define RETRACTION_MULTIPLIER 1.0
|
|
41
|
+ #define NOZZLE 0.3
|
|
42
|
+ #define FILAMENT 1.75
|
43
|
43
|
#define LAYER_HEIGHT 0.2
|
44
|
|
- #define PRIME_LENGTH 10.0 // So, we put these number in an easy to find and change place.
|
|
44
|
+ #define PRIME_LENGTH 10.0
|
45
|
45
|
#define BED_TEMP 60.0
|
46
|
46
|
#define HOTEND_TEMP 205.0
|
47
|
47
|
#define OOZE_AMOUNT 0.3
|
48
|
48
|
|
49
|
49
|
#define SIZE_OF_INTERSECTION_CIRCLES 5
|
50
|
|
- #define SIZE_OF_CROSSHAIRS 3 // crosshairs inside the circle. This number should be
|
51
|
|
- // less than SIZE_OR_INTERSECTION_CIRCLES
|
|
50
|
+ #define SIZE_OF_CROSSHAIRS 3
|
|
51
|
+
|
|
52
|
+ #if SIZE_OF_CROSSHAIRS >= SIZE_OF_INTERSECTION_CIRCLES
|
|
53
|
+ #error "SIZE_OF_CROSSHAIRS must be less than SIZE_OF_INTERSECTION_CIRCLES."
|
|
54
|
+ #endif
|
52
|
55
|
|
53
|
56
|
/**
|
54
|
|
- * Roxy's G26 Mesh Validation Tool
|
|
57
|
+ * G26 Mesh Validation Tool
|
55
|
58
|
*
|
56
|
|
- * G26 Is a Mesh Validation Tool intended to provide support for the Marlin Unified Bed Leveling System.
|
|
59
|
+ * G26 is a Mesh Validation Tool intended to provide support for the Marlin Unified Bed Leveling System.
|
57
|
60
|
* In order to fully utilize and benefit from the Marlin Unified Bed Leveling System an accurate Mesh must
|
58
|
61
|
* be defined. G29 is designed to allow the user to quickly validate the correctness of her Mesh. It will
|
59
|
62
|
* first heat the bed and nozzle. It will then print lines and circles along the Mesh Cell boundaries and
|
|
@@ -118,7 +121,7 @@
|
118
|
121
|
//#if ENABLED(ULTRA_LCD)
|
119
|
122
|
extern char lcd_status_message[];
|
120
|
123
|
//#endif
|
121
|
|
- extern float destination[];
|
|
124
|
+ extern float destination[XYZE];
|
122
|
125
|
extern void set_destination_to_current();
|
123
|
126
|
extern void set_current_to_destination();
|
124
|
127
|
extern float code_value_float();
|