Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/prusa3d/PrusaSlicer.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormichalprusa <git@michalprusa.cz>2016-11-01 19:03:46 +0300
committermichalprusa <git@michalprusa.cz>2016-11-01 19:21:56 +0300
commit977b58269a0f6c7024bae4fd916f5ca7bc7f0442 (patch)
tree00cd5ec2990d231292d11439c390141be40f02e8
parent6f203c47359ef9e7d4af7e5cb4983fc03e1f75ab (diff)
Soft factory reset does not reset Live Adjust Z to 03.0.9
-rw-r--r--Firmware/Marlin_main.cpp5
1 files changed, 4 insertions, 1 deletions
diff --git a/Firmware/Marlin_main.cpp b/Firmware/Marlin_main.cpp
index 8490a9796..62a8bed48 100644
--- a/Firmware/Marlin_main.cpp
+++ b/Firmware/Marlin_main.cpp
@@ -1048,7 +1048,6 @@ void setup()
}
if (calibration_status() == CALIBRATION_STATUS_ASSEMBLED ||
- calibration_status() == CALIBRATION_STATUS_Z_CALIBRATION ||
calibration_status() == CALIBRATION_STATUS_UNKNOWN) {
// Reset the babystepping values, so the printer will not move the Z axis up when the babystepping is enabled.
eeprom_update_word((uint16_t*)EEPROM_BABYSTEP_Z, 0);
@@ -1059,6 +1058,10 @@ void setup()
// Show the message.
lcd_show_fullscreen_message_and_wait_P(MSG_BABYSTEP_Z_NOT_SET);
lcd_update_enable(true);
+ } else if (calibration_status() == CALIBRATION_STATUS_Z_CALIBRATION) {
+ // Show the message.
+ lcd_show_fullscreen_message_and_wait_P(MSG_FOLLOW_CALIBRATION_FLOW);
+ lcd_update_enable(true);
}
// Store the currently running firmware into an eeprom,