This shows you the differences between two versions of the page.
Both sides previous revision Previous revision Next revision | Previous revision | ||
bdev:rearm_marlin [2021/10/04 16:11] richard |
bdev:rearm_marlin [2021/10/27 23:08] (current) richard |
||
---|---|---|---|
Line 1: | Line 1: | ||
====== Re-ARM Marlin ====== | ====== Re-ARM Marlin ====== | ||
+ | \\ | ||
+ | My latest back up | ||
+ | {{ : | ||
+ | \\ | ||
+ | |||
\\ | \\ | ||
https:// | https:// | ||
Line 6: | Line 11: | ||
Z probe https:// | Z probe https:// | ||
\\ | \\ | ||
+ | |||
+ | \\ | ||
+ | Set steps per mm\\ | ||
+ | https:// | ||
+ | \\ | ||
+ | \\ | ||
+ | Cold extrusion\\ | ||
+ | https:// | ||
+ | < | ||
+ | M302 ; report current cold extrusion state | ||
+ | M302 P0 ; enable cold extrusion checking | ||
+ | M302 P1 ; disable cold extrusion checking | ||
+ | M302 S0 ; always allow extrusion (disable checking) | ||
+ | M302 S170 ; only allow extrusion above 170 | ||
+ | M302 S170 P1 ; set min extrude temp to 170 but leave disabled | ||
+ | </ | ||
+ | |||
+ | \\ | ||
+ | Bed size | ||
+ | < | ||
+ | #define X_BED_SIZE 340 | ||
+ | #define Y_BED_SIZE 280 | ||
+ | </ | ||
+ | |||
\\Heater pin | \\Heater pin | ||
Line 98: | Line 127: | ||
{% endif %} | {% endif %} | ||
</ | </ | ||
- | |||
- | |||
+ | \\ | ||
+ | Notes on baby stepping https:// | ||
+ | \\ | ||
+ | https:// | ||
\\ | \\ | ||
Zprobe set up \\ | Zprobe set up \\ | ||
Line 107: | Line 138: | ||
#define Z_PROBE_SERVO_NR 0 // Defaults to SERVO 0 connector. | #define Z_PROBE_SERVO_NR 0 // Defaults to SERVO 0 connector. | ||
#define Z_SERVO_ANGLES { 100, 0 } // Z Servo Deploy and Stow angles | #define Z_SERVO_ANGLES { 100, 0 } // Z Servo Deploy and Stow angles | ||
- | |||
</ | </ | ||
+ | \\ | ||
+ | Offsets for Z probe\\ | ||
+ | https:// | ||
+ | \\ | ||
+ | Zprobe bilinear\\ | ||
+ | G29 L20 R330 F20 B250 V4 | ||
+ | \\ | ||
+ | https:// | ||
+ | \\ | ||
+ | Zprobe offsets set up via gcode\\ | ||
+ | https:// | ||
+ | \\ | ||
+ | set up via configuration.h\\ | ||
+ | < | ||
+ | #define NOZZLE_TO_PROBE_OFFSET { 10, 10, 0 } | ||
+ | </ | ||
+ | |||
+ | \\ | ||
+ | https:// | ||
\\ | \\ |