Hello,
In some cases Y axis is moving certain amount unintentionally. I use three-point manual bed leveling and nozzle travels 3 points respectively.
Here the coordinates of those points are:
[“X30 Y30”, “X270 Y30", “X170 Y300”]
First move: G1 X30 Y30 (No problem)
Second move: G1 X270 Y30 (X goes to 270 and Y supposed to stay still but it moves anyway. It moves approximately 3-4 milimeters in positive direction.)
All movements are done in absolute cartesian coordinate system.
Hardware: Duet2 Wifi
Firmware: 2.03beta3
What would cause this?
Thanks in advance.
My configuration:
; General preferences
M111 S0 ; Debugging off
G21 ; Work in millimetres
G90 ; Send absolute coordinates...
M83 ; ...but relative extruder moves
M555 P2 ; Set firmware compatibility to look like Marlin
M208 X0 Y0 Z0 S1 ; Set axis minima
M208 X330 Y330 Z330 S0 ; Set axis maxima
; Endstops
M574 S0 ; Define active low and unused microswitches
M574 X1 Y1 Z0 S1 ; Define active high microswitches
M558 P5 X0 Y0 Z1 H10 F120 T6000 ; Set Z probe type to unmodulated, the axes for which it is used and the probe + travel speeds
G31 X0 Y0 Z0 P10
M557 X30:310 Y0:250 S50 ; Define mesh grid
M581 E0 S0 T3 C0
M581 E0 S1 T4 C0
G29 S2
; Drives
M569 P0 S1 ; Drive 0 goes forwards
M569 P1 S1 ; Drive 1 goes forwards
M569 P2 S1 ; Drive 2 goes forwards
M569 P3 S1 ; Drive 3 goes forwards
M350 X256 Y256 Z256 E256 I0 ; Configure microstepping without interpolation
M92 X1280 Y1280 Z10240 E2544 ; Set steps per mm
M566 X900 Y900 Z10 E120 ; Set maximum instantaneous speed changes (mm/min)
M203 X18000 Y18000 Z1000 E1200 ; Set maximum speeds (mm/min)
M201 X1500 Y1500 Z100 E2000 ; Set accelerations (mm/s^2)
M906 X1700 Y1700 Z1800 E800 I30 ; Set motor currents (mA) and motor idle factor in per cent
M84 S30 ; Set idle timeout
; Heaters
M143 S380 ; Set maximum heater temperature to 380C
M305 P0 T100000 B4623 C9.264103e-8 R4193 ; Set thermistor + ADC parameters for heater 0
; There are two types of thermistors in the field on P1. Setting it via hw_version check
M305 P2 T100000 B4623 C9.264103e-8 R4193
M307 H3 A-1 C-1 D-1
M141 H2
; Tools
M563 P0 D0 H1 ; Define tool 0
G10 P0 X0 Y0 Z0 ; Set tool 0 axis offsets
G10 P0 R0 S0 ; Set initial tool 0 active and standby temperatures to 0C
; Network
M550 Pmachina ; Set machine name
M551 Ppass ; Set password
M552 S0 ; Enable network
M586 P0 S1 ; Enable HTTP
M586 P1 S1 R21 T0 ; Enable FTP
M586 P2 S0 ; Disable Telnet
; Fans
M106 P0 S1 I0 F500 H-1 ; Set fan 0 value, PWM signal inversion and frequency. Thermostatic control is turned off
M106 P1 S1 I0 F500 H2 T50 ; Set fan 1 value, PWM signal inversion and frequency. Thermostatic control is turned on
M106 P2 S1 I0 F500 H2 T50 ; Set fan 2 value, PWM signal inversion and frequency. Thermostatic control is turned on
M106 S0
; Custom settings are not configured
M501