From 1ae7fc486f574caeb4dac108489032cd25ed4629 Mon Sep 17 00:00:00 2001 From: zkk <1007518571@qq.com> Date: Thu, 3 Apr 2025 13:53:03 +0800 Subject: [PATCH] =?UTF-8?q?=E8=A7=A3=E5=86=B3D600Pro2HS=E6=9B=B4=E6=8D=A2z?= =?UTF-8?q?=E8=BD=B4=E7=94=B5=E6=9C=BA=20=E8=A7=A3=E9=94=81=E7=94=B5?= =?UTF-8?q?=E6=9C=BA=E7=82=B9=E5=87=BB=E5=9B=9E=E9=9B=B6z=E8=BD=B4?= =?UTF-8?q?=E4=B8=8B=E9=99=8D=E8=B7=9D=E7=A6=BB=E4=B8=8D=E5=A4=9F=E7=9A=84?= =?UTF-8?q?=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit (cherry picked from commit 40ef648e4cdbc6b0bd9d679f46ee7766850afd88) --- config/CreatBot_D600Pro2/base.cfg | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/config/CreatBot_D600Pro2/base.cfg b/config/CreatBot_D600Pro2/base.cfg index 2fb5fa60c..c4e855274 100644 --- a/config/CreatBot_D600Pro2/base.cfg +++ b/config/CreatBot_D600Pro2/base.cfg @@ -543,12 +543,18 @@ gcode: {% set do_z = 'Z' in params|string %} {% if do_x %} + SET_STEPPER_ENABLE STEPPER=stepper_x ENABLE=1 + G4 P300 {% set homing_cmd = 'X ' %} {% endif %} {% if do_y %} + SET_STEPPER_ENABLE STEPPER=stepper_y ENABLE=1 + G4 P300 {% set homing_cmd = homing_cmd + 'Y ' %} {% endif %} {% if do_z %} + SET_STEPPER_ENABLE STEPPER=stepper_z ENABLE=1 + G4 P300 {% if 'x' not in printer.toolhead.homed_axes|lower or 'y' not in printer.toolhead.homed_axes|lower %} {% set homing_cmd = 'X Y Z' %} {% else %} @@ -556,6 +562,10 @@ gcode: {% endif %} {% endif %} {% if not homing_cmd %} + SET_STEPPER_ENABLE STEPPER=stepper_x ENABLE=1 + SET_STEPPER_ENABLE STEPPER=stepper_y ENABLE=1 + SET_STEPPER_ENABLE STEPPER=stepper_z ENABLE=1 + G4 P300 C28 _ACTIVATE_DEFAULT_EXTRUDER {% else %}