Commit 4eb71d1f authored by MagoKimbra's avatar MagoKimbra

Same fix

parent 030bc2db
......@@ -2909,7 +2909,7 @@ inline void gcode_G28() {
// For auto bed leveling, clear the level matrix
#ifdef ENABLE_AUTO_BED_LEVELING
if (!home_XY) plan_bed_level_matrix.set_to_identity();
plan_bed_level_matrix.set_to_identity();
#elif defined(DELTA)
reset_bed_level();
#endif
......@@ -5753,7 +5753,7 @@ inline void gcode_M503() {
inline void gcode_M666() {
if (code_seen('P')) {
zprobe_zoffset = code_value();
ECHO_LM(DB, MSG_ZPROBE_ZOFFSET " " OK)
ECHO_LM(DB, MSG_ZPROBE_ZOFFSET " " OK);
}
if (code_seen('L')) {
ECHO_LMV(DB, "P (Z-Probe Offset):", zprobe_zoffset);
......
......@@ -45,7 +45,10 @@
//FAN pin
#define FAN_PIN ORIG_FAN_PIN
//============================================================================
//=========================== START YOUR CHANGE ==============================
// Example for change X_MIN_PIN
// #undef X_MIN_PIN
// #define X_MIN_PIN newpin
......
......@@ -977,7 +977,7 @@ static void lcd_control_menu() {
void copy_and_scalePID_d_H2() { copy_and_scalePID_d(2); }
#if HOTENDS > 3
void copy_and_scalePID_i_H3() { copy_and_scalePID_i(3); }
void copy_and_scalePID_d_H4() { copy_and_scalePID_d(3); }
void copy_and_scalePID_d_H3() { copy_and_scalePID_d(3); }
#endif //HOTENDS > 3
#endif //HOTENDS > 2
#endif //HOTENDS > 1
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment