@dc42 said in Warning: motor phase A (or B) may be disconnected:
The message is a warning. It doesn't stop the motors working. One possible cause is that is that you are trying to move the Z motor much too fast, and you don't have enough VIN voltage for that speed.
Please post your config.g and homing files.
Thanks for looking into my issue! See below:
config:
; Communication and general
M111 S0 ; Debug off
M550 PD300VS ; Machine name and Netbios name (can be anything you like)
M551 XXXXX ; Machine password (used for FTP)
; *** If you have more than one Duet on your network, they must all have different MAC addresses, so change the last digits
M540 P0xBE:0xEF:0xDE:0xAD:0xFE:0xEF ; MAC Address
; Wifi Networking
M552 S1 ; Enable Wifi by default
M555 P2 ; Set output to look like Marlin
; *** Uncomment if you have the optional PanelDue display
;M575 P1 B57600 S1 ; Communication parameters for the PanelDue
G21 ; Work in millimeters
G90 ; Send absolute positional coordinates...
M83 ; ...but relative extruder moves
; Axis and motor configuration
M569 P0 S0 ; Drive 0 goes forwards (X tower)
M569 P1 S0 ; Drive 1 goes forwards (Y tower)
M569 P2 S0 ; Drive 2 goes forwards (Z tower)
M569 P3 S1 ; Drive 3 goes forwards (extruder 1)
M574 X2 Y2 Z2 S1 ; Set endstop configuration (all endstops at high end, active high)
; *** The homed height is deliberately set too high in the following - these will be adjusted with delta auto-calibration
M665 R208.203 L360.31 B140 H432.897 X0.4 Y0.834 Z0.0 ; Set delta radius, diagonal rod length, printable radius and homed height
M666 X-2.31 Y-2.38 Z4.68 ; Endstop offset adjustments, these will be adjusted with delta auto-calibration
M350 X64 Y64 Z64 E16 I1 ; Set microstepping to 32 for X, Y and Z and 16 for extruder stepper with interpolation
M92 X800 Y800 Z800 ; Set axis steps/mm
M906 X1000 Y1000 Z1000 E500 ; Set motor currents (mA)
M201 X1000 Y1000 Z1000 E1000 ; Accelerations (mm/s^2)
M203 X20000 Y20000 Z20000 E3600 ; Maximum speeds (mm/min)
M566 X1200 Y1200 Z1200 E300 ; Maximum instant speed changes mm/minute
; Fans
M106 P1 T50 S255 H1 ; Set hotend heatsink FAN1 thermostatic control at 50�C
; Thermistors
M305 P0 T100000 B3950 R4700 L54 H-97 ; Kapton bed heater thermistor
M305 P1 R4700 T100000 B4725 C7.06e-8 ; E3D V6 Semitec GT-104 thermistor cartridge
; Heater configuration
M307 H0 B1 ; Heater 0 (bed) use bang-bang control
M307 H1 A512.9 C267.0 D9.0 B0 ; Heater 1 (hot end) use PID
; Tool definitions
M563 P0 D0 H1 ; Define tool 0, the extruder
G10 P0 S0 R0 ; Set tool 0 operating and standby temperatures
M92 E800 ; Set extruder steps per mm
; Z probe and compensation definition
; Change "H25" to "H3" AFTER commissioning your printer
M558 P4 X0 Y0 Z0 H3 I1 ; FSRs with JohnSL board Z probe behaves as a switch and is not used for homing any axes
G31 X0 Y0 Z-0.25 P500 ; MUST READ: http://www.sublimelayers.com/2017/05/fdffsd.html
T0 ; Select tool 0, the hot end
M501 ; Load config-override.g
config-override.g:
; This is a system-generated file - do not edit
; Delta parameters
M665 L360.310 R210.976 H432.795 B140.0 X-0.034 Y-0.223 Z0.000
M666 X-0.718 Y-3.354 Z4.072 A0.00 B0.00
; Heater model parameters
M307 H0 A90.0 C700.0 D10.0 S1.00 V0.0 B1
M307 H1 A512.9 C267.0 D9.0 S1.00 V0.0 B0
M307 H2 A340.0 C140.0 D5.5 S1.00 V0.0 B0
M307 H3 A340.0 C140.0 D5.5 S1.00 V0.0 B0
M307 H4 A340.0 C140.0 D5.5 S1.00 V0.0 B0
M307 H5 A340.0 C140.0 D5.5 S1.00 V0.0 B0
M307 H6 A340.0 C140.0 D5.5 S1.00 V0.0 B0
M307 H7 A340.0 C140.0 D5.5 S1.00 V0.0 B0
Homing:
G91 ; use relative positioning
G1 S1 X800 Y800 Z800 F2500 ; move all carriages up 700mm, stopping at the endstops
G1 S2 X-3 Y-3 Z-3 ; move all carriages down 3mm
G1 S1 X6 Y6 Z6 F250 ; move carriages slowly up 6mm, stopping at the endstops
G1 Z-5 F2000 ; down a few mm so that we can centre the head
G90 ; back to absolute positioning
G1 X0 Y0 F2000 ; centre the head and set a reasonable feed rate