浏览代码

Bump the unparking speed to 50mm/s (same as M600 recovery)

Yuri D'Elia 4 年之前
父节点
当前提交
50a9fe003a
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      Firmware/Marlin_main.cpp

+ 1 - 1
Firmware/Marlin_main.cpp

@@ -10942,7 +10942,7 @@ void restore_print_from_eeprom(bool mbl_was_active) {
 
     // Move to the XY print position in logical coordinates, where the print has been killed, but
     // without shifting Z along the way. This requires performing the move without mbl.
-	sprintf_P(cmd, PSTR("G1 X%f Y%f F2000"),
+	sprintf_P(cmd, PSTR("G1 X%f Y%f F3000"),
               eeprom_read_float((float*)(EEPROM_UVLO_CURRENT_POSITION + 0)),
               eeprom_read_float((float*)(EEPROM_UVLO_CURRENT_POSITION + 4)));
 	enquecommand(cmd);