all axis move on first connect

when i first connect to my printer and try to manually move any axis. in any value. all of them move.

i have a MKS GEN board with DRV8825 with 16 microstepping all of wich is new 

using the latest firmware
once it has done this everything is fine i think

Comments

  • This depends on the command you send to printer. On startup position 0,0,0 is assumed from firmware. If your host software sends G1 X20 Y50 Z20 all axis move. So you have to check what commands get send to see if this is an error or misconfiguration of host or if it works only after homing (which you should do first anyway).
  • in my start up gcode i have 
    G21        ;metric values
    G90        ;absolute positioning
    M82        ;set extruder to absolute mode
    M107       ;start with the fan off
    G90 ; use absolute coordinates
    G28  ;move X/Y to min endstops
    G32 S2
    M82 ; use absolute distances for extrusion
  • That code gets only send when you start a print. You were talking about manual moves after connect. So open log enable commands send and see what you send. Maybe first send M114 to see what firmware thinks where you are to have a base. And please also describe what happens with each command.
Sign In or Register to comment.