@Chriss thank you that is helping i messed up with the M569 im working on that now.
@jay_s_uk yes i have i pre generated the config from the configuration tool
@Chriss thank you that is helping i messed up with the M569 im working on that now.
@jay_s_uk yes i have i pre generated the config from the configuration tool
im working on a corexy printer and i need to home first the Y axis and then the X
for doing the home of Y i need to move the X a little bit to clear some space for the X switch
my homey.g looks like this:
; homey.g
; called to home the Y axis
;
; generated by RepRapFirmware Configuration Tool v3.5.0-rc.2+6 on Thu Jan 25 2024 16:52:19 GMT-0300 (Argentina Standard Time)
; lift Z
G91 ; relative positioning
G1 H2 Z5 ; move Z relative to current position to avoid dragging nozzle over the bed
G90 ;absolute positioning
; home Y
G1 H2 X15 F2500
G1 H1 Y-450 F2500 ; coarse home in the -Y direction
G1 Y10 F3000 ; move back 5mm
G1 H1 Y-15 F300 ; fine home in the -Y direction
G1 H2 Z-5 F6000 ; lower Z again
the first issue i have is when i do the G1 H2 X15 F2500
the gantry moves in a diagonal instead of only X, the rest of the process is ok and the homing works fine
and when the big problems start is the homex.g that looks like this:
; homex.g
; called to home the X axis
;
; lift Z
G91 ; relative positioning
G1 H2 Z5 ; move Z relative to current position to avoid dragging nozzle over the bed
G90 ; absolute positioning
; home X
G1 H2 X15 F6000
G1 H1 X-450 F2600 ; coarse home in the -X direction
G1 X10 F6000 ; move back 5mm
G1 H1 X-15 F500 ; fine home in the -X direction
G1 H2 Z-5 F6000 ; lower Z again
the first move when run homex.g moves the y axis away so the rest of the process fails
both of the endstop switches are static and the gantry moves to them in both axis
where is my gcode failing?
i re generated all configs and nothing changed
i keep searching for the issue and find that some motors have they coils inverted
almost all my motors have that and none of my cables is inverted to work like that
so start changing cables and find that works
i have a clone duet2 i bought it in 2019 used for 3 years and needed to move and disarmed the printed and was in a box for 2 years now
i started working on it again and the first thing i do was to update it to 3.5 firmware version and that worked fine
now when i try to move the motors the motors vibrate but not move
im testing only with the motors without load and this very minimal config
; General
M550 P"corexy" ; set hostname
M911 S19.8 R22 P"M913 X0 Y0 G91 M83 G1 Z3 E-5 F1000" ; set voltage thresholds and actions to run on power loss
; Network
M552 S1 ; configure WiFi adapter
M586 P0 S1 ; configure HTTP
; Drives
M569 P0 S0 ; physical drive 0 goes forwards
M569 P1 S0 ; physical drive 1 goes forwards
M569 P2 S1 ; physical drive 2 goes forwards
M584 X0 Y1 Z2 E3 ; set drive mapping
M350 X16 Y16 Z16 E16 I1 ; configure microstepping with interpolation
M92 X80.00 Y80.00 Z400.00 ; set steps per mm
M566 X1020.00 Y1020.00 Z1200.00 E40.00 ; set maximum instantaneous speed changes (mm/min)
M203 X7000.00 Y7000.00 Z1800.00 ; set maximum speeds (mm/min)
M201 X700.00 Y700.00 Z200.00 ; set accelerations (mm/s^2)
M906 X800 Y800 Z800 I30 ; set motor currents (mA) and motor idle factor in per cent
M84 S30
; Kinematics
M669 K1 ; configure CoreXY kinematics
; Endstops
M574 X1 P"xstop" S1 ; configure X axis endstop
M574 Y1 P"ystop" S1 ; configure Y axis endstop
i tried diferent cables diferent motors in diferent drivers even diferent motors and nothing
any ideas?